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,55 +1,27 @@
---
id: 5900f4f11000cf542c510002
title: 问题388不同的线条
challengeType: 5
videoUrl: ''
title: 问题388不同的线条
---
## Description
<section id="description">考虑所有格点abc其中0≤abc≤N。 <p>从原点O0,0,0开始所有线都被绘制到其他格点。设DN是不同的这种线的数量。 </p><p>您被给予D1 000 000= 831909254469114121。 </p><p>找到D1010。将前9位数字后跟最后9位数字作为答案。 </p></section>
# --description--
## Instructions
<section id="instructions">
</section>
考虑所有格点abc其中0≤abc≤N。
## Tests
<section id='tests'>
从原点O0,0,0开始所有线都被绘制到其他格点。设DN是不同的这种线的数量。
```yml
tests:
- text: <code>euler388()</code>应该返回831907372805130000。
testString: assert.strictEqual(euler388(), 831907372805130000);
您被给予D1 000 000= 831909254469114121。
```
找到D1010。将前9位数字后跟最后9位数字作为答案。
</section>
# --hints--
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
`euler388()`应该返回831907372805130000。
```js
function euler388() {
// Good luck!
return true;
}
euler388();
assert.strictEqual(euler388(), 831907372805130000);
```
</div>
# --solutions--
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>