freeCodeCamp/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-62-cubic-permutatio...

915 B

id title challengeType forumTopicId dashedName
5900f3aa1000cf542c50febd Problem 62: Cubic permutations 5 302174 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.

--hints--

cubicPermutations() should return a number.

assert(typeof cubicPermutations() === 'number');

cubicPermutations() should return 127035954683.

assert.strictEqual(cubicPermutations(), 127035954683);

--seed--

--seed-contents--

function cubicPermutations() {

  return true;
}

cubicPermutations();

--solutions--

// solution required