freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-65-convergents-of-e...

55 lines
597 B
Markdown

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