--- id: 5900f3aa1000cf542c50febd challengeType: 5 title: 'Problem 62: Cubic permutations' videoUrl: '' localeTitle: 问题62:立方排列 --- ## Description
可以置换立方体41063625(3453)以产生另外两个立方体:56623104(3843)和66430125(4053)。实际上,41063625是最小的立方体,其正好具有三个排列的数字也是立方体。找到最小的立方体,其数字的五个排列正好是立方体。
## Instructions
## Tests
```yml tests: - text: euler62()应该返回127035954683。 testString: 'assert.strictEqual(euler62(), 127035954683, "euler62() should return 127035954683.");' ```
## Challenge Seed
```js function euler62() { // Good luck! return true; } euler62(); ```
## Solution
```js // solution required ```