freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-366-stone-game-iii....

55 lines
669 B
Markdown

---
id: 5900f4da1000cf542c50ffed
challengeType: 5
title: 'Problem 366: Stone Game III'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler366()</code> должен вернуть 88351299.
testString: 'assert.strictEqual(euler366(), 88351299, "<code>euler366()</code> should return 88351299.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler366() {
// Good luck!
return true;
}
euler366();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>