freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-227-the-chase.arabi...

55 lines
611 B
Markdown

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