--- id: 5900f4091000cf542c50ff1c challengeType: 5 title: 'Problem 157: Solving the diophantine equation' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler157(), 53490, "euler157() should return 53490.");' ```
## Challenge Seed
```js function euler157() { // Good luck! return true; } euler157(); ```
## Solution
```js // solution required ```