freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-230-fibonacci-words...

55 lines
631 B
Markdown

---
id: 5900f4531000cf542c50ff65
challengeType: 5
title: 'Problem 230: Fibonacci Words'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler230(), 850481152593119200, "<code>euler230()</code> should return 850481152593119200.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler230() {
// Good luck!
return true;
}
euler230();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>