freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-297-zeckendorf-repr...

55 lines
643 B
Markdown

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