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