freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-382-generating-poly...

55 lines
677 B
Markdown
Raw Normal View History

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