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