For example, when D=13, the minimal solution in x is 6492 – 13×1802 = 1.
It can be assumed that there are no solutions in positive integers when D is square.
By finding minimal solutions in x for D = {2, 3, 5, 6, 7}, we obtain the following:
Hence, by considering minimal solutions in x for D ≤ 7, the largest x is obtained when D=5.
Find the value of D ≤ 1000 in minimal solutions of x for which the largest value of x is obtained.
## Instructions
## Tests
```yml
tests:
- text: diophantineEquation() should return a number.
testString: assert(typeof diophantineEquation() === 'number');
- text: diophantineEquation() should return 661.
testString: assert.strictEqual(diophantineEquation(), 661);
```
## Challenge Seed
```js
function diophantineEquation() {
return true;
}
diophantineEquation();
```