--- id: 5900f4911000cf542c50ffa3 challengeType: 5 title: 'Problem 292: Pythagorean Polygons' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler292(), 3600060866, "euler292() should return 3600060866.");' ```
## Challenge Seed
```js function euler292() { // Good luck! return true; } euler292(); ```
## Solution
```js // solution required ```