--- id: 5900f3aa1000cf542c50febd challengeType: 5 title: 'Problem 62: Cubic permutations' forumTopicId: 302174 --- ## 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
```yml tests: - text: cubicPermutations() should return a number. testString: assert(typeof cubicPermutations() === 'number'); - text: cubicPermutations() should return 127035954683. testString: assert.strictEqual(cubicPermutations(), 127035954683); ```
## Challenge Seed
```js function cubicPermutations() { return true; } cubicPermutations(); ```
## Solution
```js // solution required ```