freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-450-hypocycloid-and...

55 lines
786 B
Markdown

---
id: 5900f52e1000cf542c510041
challengeType: 5
title: 'Problem 450: Hypocycloid and Lattice points'
videoUrl: ''
localeTitle: 'Задача 450: точки гипоциклоиды и решетки'
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler450()</code> должен вернуть 583333163984220900.
testString: 'assert.strictEqual(euler450(), 583333163984220900, "<code>euler450()</code> should return 583333163984220900.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler450() {
// Good luck!
return true;
}
euler450();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>