freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-250-250250.russian.md

58 lines
953 B
Markdown

---
id: 5900f4661000cf542c50ff78
challengeType: 5
title: 'Problem 250: 250250'
forumTopicId: 301898
localeTitle: 'Задача 250: 250250'
---
## Description
<section id='description'>
Найдите число непустых подмножеств {11, 22, 33, ..., 250250250250}, сумма элементов которых делится на 250. Введите в качестве ответа самые правые 16 цифр.
</section>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler250()</code> should return 1425480602091519.
testString: assert.strictEqual(euler250(), 1425480602091519);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler250() {
// Good luck!
return true;
}
euler250();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>