--- id: 5900f4fe1000cf542c510010 challengeType: 5 title: 'Problem 400: Fibonacci tree game' videoUrl: '' localeTitle: 'Задача 400: игра дерева Фибоначчи' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler400(), 438505383468410600, "euler400() should return 438505383468410600.");' ```
## Challenge Seed
```js function euler400() { // Good luck! return true; } euler400(); ```
## Solution
```js // solution required ```