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