freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-459-flipping-game.a...

619 B

id challengeType title videoUrl localeTitle
5900f5371000cf542c51004a 5 Problem 459: Flipping game

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler459();

Solution

// solution required