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