Valeriy 79d9012432 fix(curriculum): quotes in tests (#18828)
* fix(curriculum): tests quotes

* fix(curriculum): fill seed-teardown

* fix(curriculum): fix tests and remove unneeded seed-teardown
2018-10-20 23:32:47 +05:30

993 B

id, challengeType, title
id challengeType title
5900f3aa1000cf542c50febd 5 Problem 62: Cubic permutations

Description

The cube, 41063625 (3453), can be permuted to produce two other cubes: 56623104 (3843) and 66430125 (4053). In fact, 41063625 is the smallest cube which has exactly three permutations of its digits which are also cube. Find the smallest cube for which exactly five permutations of its digits are cube.

Instructions

Tests

tests:
  - text: <code>euler62()</code> should return 127035954683.
    testString: assert.strictEqual(euler62(), 127035954683, '<code>euler62()</code> should return 127035954683.');

Challenge Seed

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

euler62();

Solution

// solution required