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