--- id: 5900f3ad1000cf542c50fec0 challengeType: 5 title: 'Problem 65: Convergents of e' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler65(), 272, "euler65() should return 272.");' ```
## Challenge Seed
```js function euler65() { // Good luck! return true; } euler65(); ```
## Solution
```js // solution required ```