chore(learn): Applied MDX format to Chinese curriculum files (#40462)

This commit is contained in:
Randell Dawson
2020-12-16 00:37:30 -07:00
committed by GitHub
parent 873fce02a2
commit 9ce4a02a41
1665 changed files with 58741 additions and 88042 deletions

View File

@ -1,60 +1,78 @@
---
id: 599d0ba974141b0f508b37d5
title: Emirp奖金
challengeType: 5
videoUrl: ''
title: Emirp奖金
---
## Description
<section id="description"><p>一个emirp向后拼写的主要拼写是素数当它们被反转时在它们的十进制表示中是一个不同的素数。 </p><p>编写应能功能:显示前<b>n</b> eprimes numbers.Show在range.Show的eprimes数字eprimes的在range.Show <b><sup></sup> n <sup></sup></b> eprimes数目。 </p><p>该函数应该有两个参数。第一个将接收<b>n</b>或作为数组的范围。第二个将接收一个布尔值它指定函数是否将eprimes作为数组或单个数字范围中的素数或第<b>n <sup></sup></b>素数)返回。根据参数,函数应返回数组或数字。 </p></section>
# --description--
## Instructions
<section id="instructions">
</section>
<p>一个emirp向后拼写的主要拼写是素数当它们被反转时在它们的十进制表示中是一个不同的素数。 </p><p>编写应能功能:显示前<b>n</b> eprimes numbers.Show在range.Show的eprimes数字eprimes的在range.Show <b><sup></sup> n <sup></sup></b> eprimes数目。 </p><p>该函数应该有两个参数。第一个将接收<b>n</b>或作为数组的范围。第二个将接收一个布尔值它指定函数是否将eprimes作为数组或单个数字范围中的素数或第<b>n <sup></sup></b>素数)返回。根据参数,函数应返回数组或数字。 </p>
## Tests
<section id='tests'>
# --hints--
```yml
tests:
- text: <code>emirps</code>是一个功能。
testString: assert(typeof emirps === 'function');
- text: '<code>emirps(20,true)</code>应该返回<code>[13,17,31,37,71,73,79,97,107,113,149,157,167,179,199,311,337,347,359,389]</code>'
testString: assert.deepEqual(emirps(20, true), [13, 17, 31, 37, 71, 73, 79, 97, 107, 113, 149, 157, 167, 179, 199, 311, 337, 347, 359, 389]);
- text: <code>emirps(10000)</code>应该返回<code>948349</code>
testString: assert.deepEqual(emirps(1000), 70529);
- text: '<code>emirps([7700,8000],true)</code>应该返回<code>[7717,7757,7817,7841,7867,7879,7901,7927,7949,7951,7963]</code>'
testString: assert.deepEqual(emirps([7700, 8000], true), [7717, 7757, 7817, 7841, 7867, 7879, 7901, 7927, 7949, 7951, 7963]);
- text: '<code>emirps([7700,8000],true)</code>应该返回<code>11</code>'
testString: assert.deepEqual(emirps([7700, 8000], false), 11);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
`emirps`是一个功能。
```js
function emirps(n) {
// Good luck!
}
assert(typeof emirps === 'function');
```
</div>
</section>
## Solution
<section id='solution'>
`emirps(20,true)`应该返回`[13,17,31,37,71,73,79,97,107,113,149,157,167,179,199,311,337,347,359,389]`
```js
// solution required
assert.deepEqual(emirps(20, true), [
13,
17,
31,
37,
71,
73,
79,
97,
107,
113,
149,
157,
167,
179,
199,
311,
337,
347,
359,
389
]);
```
/section>
`emirps(10000)`应该返回`948349`
```js
assert.deepEqual(emirps(1000), 70529);
```
`emirps([7700,8000],true)`应该返回`[7717,7757,7817,7841,7867,7879,7901,7927,7949,7951,7963]`
```js
assert.deepEqual(emirps([7700, 8000], true), [
7717,
7757,
7817,
7841,
7867,
7879,
7901,
7927,
7949,
7951,
7963
]);
```
`emirps([7700,8000],true)`应该返回`11`
```js
assert.deepEqual(emirps([7700, 8000], false), 11);
```
# --solutions--