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

56 lines
922 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: 5900f4da1000cf542c50ffec
challengeType: 5
videoUrl: ''
title: 问题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);
```
</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>