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