--- id: 5900f4a71000cf542c50ffb9 challengeType: 5 title: 'Problem 314: The Mouse on the Moon' videoUrl: '' localeTitle: 'Problema 314: O Mouse na Lua' --- ## Description undefined ## Instructions
## Tests
```yml tests: - text: euler314() deve retornar 132.52756426. testString: 'assert.strictEqual(euler314(), 132.52756426, "euler314() should return 132.52756426.");' ```
## Challenge Seed
```js function euler314() { // Good luck! return true; } euler314(); ```
## Solution
```js // solution required ```