--- id: 5900f4951000cf542c50ffa8 challengeType: 5 title: 'Problem 297: Zeckendorf Representation' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler297(), 2252639041804718000, "euler297() should return 2252639041804718000.");' ```
## Challenge Seed
```js function euler297() { // Good luck! return true; } euler297(); ```
## Solution
```js // solution required ```