2018-10-10 18:03:03 -04:00
---
id: 5900f3b81000cf542c50fecb
challengeType: 5
title: 'Problem 76: Counting summations'
2019-08-28 16:26:13 +03:00
forumTopicId: 302189
2018-10-10 18:03:03 -04:00
localeTitle: 'Задача 76: подсчет сумм'
---
## Description
2019-08-28 16:26:13 +03:00
<section id='description'>
Можно записать пять в виде суммы ровно по шесть разных способов: 4 + 1 3 + 2 3 + 1 + 1 2 + 2 + 1 2 + 1 + 1 + 1 1 + 1 + 1 + 1 + 1 Сколько разных пути можно записать в виде суммы по крайней мере двух положительных целых чисел?
</section>
2018-10-10 18:03:03 -04:00
## Instructions
2019-08-28 16:26:13 +03:00
<section id='instructions'>
2018-10-10 18:03:03 -04:00
</section>
## Tests
<section id='tests'>
```yml
tests:
2019-08-28 16:26:13 +03:00
- text: <code>euler76()</code> should return 190569291.
testString: assert.strictEqual(euler76(), 190569291);
2018-10-10 18:03:03 -04:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler76() {
// Good luck!
return true;
}
euler76();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
2019-08-28 16:26:13 +03:00
2018-10-10 18:03:03 -04:00
</section>