--- id: 5900f3c71000cf542c50feda challengeType: 5 title: 'Problem 91: Right triangles with integer coordinates' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler91(), 14234, "euler91() should return 14234.");' ```
## Challenge Seed
```js function euler91() { // Good luck! return true; } euler91(); ```
## Solution
```js // solution required ```