--- id: 5900f3aa1000cf542c50febd challengeType: 5 title: 'Problem 62: Cubic permutations' videoUrl: '' localeTitle: 'Задача 62: Кубические перестановки' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler62(), 127035954683, "euler62() should return 127035954683.");' ```
## Challenge Seed
```js function euler62() { // Good luck! return true; } euler62(); ```
## Solution
```js // solution required ```