Files
freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-357-prime-generating-integers.chinese.md

56 lines
984 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: 5900f4d11000cf542c50ffe4
challengeType: 5
title: 'Problem 357: Prime generating integers'
videoUrl: ''
localeTitle: 问题357Prime生成整数
---
## Description
<section id="description">考虑301,2,3,5,6,10,15,30的除数。可以看出对于每个除数d为30d + 30 / d是素数。 <p>找出所有正整数n的总和不超过100 000 000这样对于n的每个除数dd + n / d是素数。 </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler357()</code>应该返回1739023853137。
testString: 'assert.strictEqual(euler357(), 1739023853137, "<code>euler357()</code> should return 1739023853137.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler357() {
// Good luck!
return true;
}
euler357();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>