Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-97-large-non-mersenne-prime.md
Oliver Eyton-Williams dec409a4bd fix: s/localeTitle/title/g
2020-10-06 23:10:08 +05:30

56 lines
1018 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: 5900f3ce1000cf542c50fee0
challengeType: 5
videoUrl: ''
title: 问题97大的非梅森素数
---
## Description
<section id="description"> 1999年发现了第一个发现超过一百万个数字的已知素数它是形式为26972593-1的梅森素数;它包含正好2,098,960位数字。随后发现其他形式为2p-1的梅森素数包含更多数字。然而在2004年发现了一个巨大的非梅森素数其中包含2,357,207个数字28433×27830457 + 1。找到此素数的最后十位数字。 </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler97()</code>应该返回8739992577。
testString: assert.strictEqual(euler97(), 8739992577);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler97() {
// Good luck!
return true;
}
euler97();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>