freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-353-risky-moon.russ...

55 lines
614 B
Markdown

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