freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-262-mountain-range....

55 lines
610 B
Markdown
Raw Normal View History

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