freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-35-circular-primes.md

66 lines
1.5 KiB
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: 5900f38f1000cf542c50fea2
challengeType: 5
videoUrl: ''
title: 问题35循环素数
---
## Description
<section id="description">这个数字197被称为循环素数因为数字的所有旋转197,971和719本身都是素数。在1002,3,5,7,11,13,17,31,37,71,73,79和97之下有十三个这样的素数。在n下面有多少个圆形素数而100 &lt;= n &lt; = 1000000 </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>circularPrimes(100)</code>应该返回13。
testString: assert(circularPrimes(100) == 13);
- text: <code>circularPrimes(100000)</code>应该返回43。
testString: assert(circularPrimes(100000) == 43);
- text: <code>circularPrimes(250000)</code>应该返回45。
testString: assert(circularPrimes(250000) == 45);
- text: <code>circularPrimes(500000)</code>应该返回49。
testString: assert(circularPrimes(500000) == 49);
- text: <code>circularPrimes(750000)</code>应该返回49。
testString: assert(circularPrimes(750000) == 49);
- text: <code>circularPrimes(1000000)</code>应该返回55。
testString: assert(circularPrimes(1000000) == 55);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function circularPrimes(n) {
// Good luck!
return n;
}
circularPrimes(1000000);
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>