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