--- id: 5900f50e1000cf542c510020 challengeType: 5 title: 'Problem 416: A frog"s trip' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler416(), 898082747, "euler416() should return 898082747.");' ```
## Challenge Seed
```js function euler416() { // Good luck! return true; } euler416(); ```
## Solution
```js // solution required ```