--- id: 5900f53d1000cf542c510050 challengeType: 5 title: 'Problem 465: Polar polygons' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler465(), 585965659, "euler465() should return 585965659.");' ```
## Challenge Seed
```js function euler465() { // Good luck! return true; } euler465(); ```
## Solution
```js // solution required ```