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