freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-400-fibonacci-tree-...

55 lines
635 B
Markdown

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