freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-314-the-mouse-on-th...

55 lines
625 B
Markdown

---
id: 5900f4a71000cf542c50ffb9
challengeType: 5
title: 'Problem 314: The Mouse on the Moon'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler314(), 132.52756426, "<code>euler314()</code> should return 132.52756426.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler314() {
// Good luck!
return true;
}
euler314();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>