freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-372-pencils-of-rays...

55 lines
865 B
Markdown

---
id: 5900f4e11000cf542c50fff3
challengeType: 5
title: 'Problem 372: Pencils of rays'
videoUrl: ''
localeTitle: ''
---
## Description
<section id="description"> Пусть R (M, N) - число точек решетки (x, y), которые удовлетворяют условию M <p> Примечание: представляет функцию пола. </p></section>
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler372(), 301450082318807040, "<code>euler372()</code> should return 301450082318807040.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler372() {
// Good luck!
return true;
}
euler372();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>