freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-391-hopping-game.ar...

55 lines
614 B
Markdown
Raw Normal View History

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