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