freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-379-least-common-mu...

56 lines
802 B
Markdown

---
id: 5900f4e81000cf542c50fffa
challengeType: 5
title: 'Problem 379: Least common multiple count'
videoUrl: ''
localeTitle: 'Задача 379: Наименьшее общее количество'
---
## Description
undefined
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler379()</code> должен вернуть 132314136838185.
testString: 'assert.strictEqual(euler379(), 132314136838185, "<code>euler379()</code> should return 132314136838185.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler379() {
// Good luck!
return true;
}
euler379();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>