Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-76-counting-summations.md

22 lines
438 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
id: 5900f3b81000cf542c50fecb
title: 问题76计算总结
challengeType: 5
videoUrl: ''
---
# --description--
可以用六种不同的方式将五个作为总和写成4 + 1 3 + 2 3 + 1 + 1 2 + 2 + 1 2 + 1 + 1 + 1 1 + 1 + 1 + 1 + 1多少个不同一百种方式可以写成至少两个正整数的总和
# --hints--
`euler76()`应该返回190569291。
```js
assert.strictEqual(euler76(), 190569291);
```
# --solutions--