--- title: Zeckendorf number representation id: 594810f028c0303b75339ad6 challengeType: 5 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.equal(typeof zeckendorf, "function", "zeckendorf must be function");' - text: '' testString: 'assert.deepEqual(answer, solution20, "Your zeckendorf function should return the correct answer");' ```
## Challenge Seed
```js function zeckendorf(n) { // good luck! } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```