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