--- id: 5900f5451000cf542c510057 challengeType: 5 title: 'Problem 472: Comfortable Distance II' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler472(), 73811586, "euler472() should return 73811586.");' ```
## Challenge Seed
```js function euler472() { // Good luck! return true; } euler472(); ```
## Solution
```js // solution required ```