--- id: 5900f3ae1000cf542c50fec1 challengeType: 5 title: 'Problem 66: Diophantine equation' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler66(), 661, "euler66() should return 661.");' ```
## Challenge Seed
```js function euler66() { // Good luck! return true; } euler66(); ```
## Solution
```js // solution required ```