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,68 +1,27 @@
---
id: 595668ca4cfe1af2fb9818d4
title: Harshad或Niven系列
challengeType: 5
videoUrl: ''
title: Harshad或Niven系列
---
## Description
<section id="description"><p> <a href="http://mathworld.wolfram.com/HarshadNumber.html" title="链接http//mathworld.wolfram.com/HarshadNumber.html">Harshad</a>或Niven数是正整数≥1可以被它们的数字之和整除。 </p><p>例如42是<a href="http://rosettacode.org/wiki/oeis:A005349" title="OEISA005349">Harshad数</a>因为42可以被4 + 2整除而没有余数。 </p>假设系列被定义为按递增顺序排列的数字。任务: <p>实现一个函数来生成Harshad序列的连续成员。 </p><p>使用它列出序列的前20个成员并列出第一个大于1000的Harshad数。 </p></section>
# --description--
## Instructions
<section id="instructions">
</section>
<p> <a href='http://mathworld.wolfram.com/HarshadNumber.html' title='链接http//mathworld.wolfram.com/HarshadNumber.html'>Harshad</a>或Niven数是正整数≥1可以被它们的数字之和整除。 </p><p>例如42是<a href='http://rosettacode.org/wiki/oeis:A005349' title='OEISA005349'>Harshad数</a>因为42可以被4 + 2整除而没有余数。 </p>假设系列被定义为按递增顺序排列的数字。任务: <p>实现一个函数来生成Harshad序列的连续成员。 </p><p>使用它列出序列的前20个成员并列出第一个大于1000的Harshad数。 </p>
## Tests
<section id='tests'>
# --hints--
```yml
tests:
- text: <code>isHarshadOrNiven</code>是一个函数。
testString: assert(typeof isHarshadOrNiven === 'function');
- text: '<code>isHarshadOrNiven()</code>应该返回<code>{"firstTwenty": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 18, 20, 21, 24, 27, 30, 36, 40, 42],"firstOver1000": 1002}</code>'
testString: assert.deepEqual(isHarshadOrNiven(), res);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
`isHarshadOrNiven`是一个函数。
```js
function isHarshadOrNiven () {
const res = {
firstTwenty: [],
firstOver1000: undefined
};
// Change after this line
return res;
}
assert(typeof isHarshadOrNiven === 'function');
```
</div>
### After Test
<div id='js-teardown'>
`isHarshadOrNiven()`应该返回`{"firstTwenty": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 18, 20, 21, 24, 27, 30, 36, 40, 42],"firstOver1000": 1002}`
```js
console.info('after the test');
assert.deepEqual(isHarshadOrNiven(), res);
```
</div>
# --solutions--
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>