freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-399-squarefree-fibo...

55 lines
668 B
Markdown

---
id: 5900f4fc1000cf542c51000e
challengeType: 5
title: 'Problem 399: Squarefree Fibonacci Numbers'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler399(), 1508395636674243, 6.5e27330467, "<code>euler399()</code> should return 1508395636674243, 6.5e27330467.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler399() {
// Good luck!
return true;
}
euler399();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>