freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-437-fibonacci-primi...

55 lines
703 B
Markdown
Raw Normal View History

---
id: 5900f5241000cf542c510036
challengeType: 5
title: 'Problem 437: Fibonacci primitive roots'
videoUrl: ''
localeTitle: 'Задача 437: примитивные корни Фибоначчи'
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler437(), 74204709657207, "<code>euler437()</code> should return 74204709657207.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler437() {
// Good luck!
return true;
}
euler437();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>