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

614 B

id challengeType title videoUrl localeTitle
5900f4f31000cf542c510006 5 Problem 391: Hopping Game

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler391(), 61029882288, "<code>euler391()</code> should return 61029882288.");'

Challenge Seed

function euler391() {
  // Good luck!
  return true;
}

euler391();

Solution

// solution required