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

728 B

id challengeType title videoUrl localeTitle
5900f5371000cf542c51004a 5 Problem 459: Flipping game Problema 459: juego de voltear

Description

undefined

Instructions

Tests

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

Challenge Seed

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

euler459();

Solution

// solution required