freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-462-permutation-of-...

55 lines
697 B
Markdown

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