--- id: 5900f44f1000cf542c50ff61 challengeType: 5 title: 'Problem 227: The Chase' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler227(), 3780.618622, "euler227() should return 3780.618622.");' ```
## Challenge Seed
```js function euler227() { // Good luck! return true; } euler227(); ```
## Solution
```js // solution required ```