freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-365-a-huge-binomial...

56 lines
1.0 KiB
Markdown
Raw Normal View History

---
id: 5900f4da1000cf542c50ffec
challengeType: 5
title: 'Problem 365: A huge binomial coefficient'
videoUrl: ''
localeTitle: 问题365巨大的二项式系数
---
## Description
<section id="description">二项式系数C1018,109是具有超过90亿9×109个数字的数字。 <p>令Mnkm表示二项式系数Cnk模m。 </p><p>计算ΣM1018,109p <em>q</em> r为1000 &lt;p &lt;q &lt;r &lt;5000和pqr prime。 </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler365()</code>应该返回162619462356610300。
testString: 'assert.strictEqual(euler365(), 162619462356610300, "<code>euler365()</code> should return 162619462356610300.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler365() {
// Good luck!
return true;
}
euler365();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>