freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-406-guessing-game.r...

56 lines
650 B
Markdown

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