freeCodeCamp/curriculum/challenges/portuguese/10-coding-interview-prep/project-euler/problem-76-counting-summati...

84 lines
1.5 KiB
Markdown
Raw Normal View History

---
id: 5900f3b81000cf542c50fecb
title: 'Problema 76: Contagem de somas'
challengeType: 5
forumTopicId: 302189
dashedName: problem-76-counting-summations
---
# --description--
É possível chegar ao resultado 5 a partir de uma soma de seis formas diferentes:
<div style='margin-left: 4em;'>
4 + 1<br>
3 + 2<br>
3 + 1 + 1<br>
2 + 2 + 1<br>
2 + 1 + 1 + 1<br>
1 + 1 + 1 + 1 + 1<br><br>
</div>
De quantas formas diferentes `n` pode ser escrito como o resultado de uma soma de pelo menos dois números inteiros positivos?
# --hints--
`countingSummations(5)` deve retornar um número.
```js
assert(typeof countingSummations(5) === 'number');
```
`countingSummations(5)` deve retornar `6`.
```js
assert.strictEqual(countingSummations(5), 6);
```
`countingSummations(20)` deve retornar `626`.
```js
assert.strictEqual(countingSummations(20), 626);
```
`countingSummations(50)` deve retornar `204225`.
```js
assert.strictEqual(countingSummations(50), 204225);
```
`countingSummations(100)` deve retornar `190569291`.
```js
assert.strictEqual(countingSummations(100), 190569291);
```
# --seed--
## --seed-contents--
```js
function countingSummations(n) {
return true;
}
countingSummations(5);
```
# --solutions--
```js
function countingSummations(n) {
const combinations = new Array(n + 1).fill(0);
combinations[0] = 1;
for (let i = 1; i < n; i++) {
for (let j = i; j < n + 1; j++) {
combinations[j] += combinations[j - i];
}
}
return combinations[n];
}
```