--- id: 5900f53b1000cf542c51004d challengeType: 5 title: 'Problem 462: Permutation of 3-smooth numbers' videoUrl: '' localeTitle: 'Задача 462: Перестановка 3-гладких чисел' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler462(), Infinity, "euler462() should return Infinity.");' ```
## Challenge Seed
```js function euler462() { // Good luck! return true; } euler462(); ```
## Solution
```js // solution required ```