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,31 @@
---
id: 5900f5271000cf542c51003a
title: 问题443GCD序列
challengeType: 5
videoUrl: ''
title: 问题443GCD序列
---
## Description
<section id="description">设gn为如下定义的序列g4= 13gn= gn-1+ gcdngn-1n&gt; 4。 <p>前几个值是: </p><pre> <code>n4567891011121314151617181920... g(n)1314161718272829303132333451545560...</code> </pre><p>给出g1 000= 2524和g1 000 000= 2624152。 </p><p>找到g1015</p></section>
# --description--
## Instructions
<section id="instructions">
</section>
设gn为如下定义的序列g4= 13gn= gn-1+ gcdngn-1n> 4。
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler443()</code>应该返回2744233049300770。
testString: assert.strictEqual(euler443(), 2744233049300770);
前几个值是:
```
n4567891011121314151617181920... g(n)1314161718272829303132333451545560...
```
</section>
给出g1 000= 2524和g1 000 000= 2624152。
## Challenge Seed
<section id='challengeSeed'>
找到g1015
<div id='js-seed'>
# --hints--
`euler443()`应该返回2744233049300770。
```js
function euler443() {
// Good luck!
return true;
}
euler443();
assert.strictEqual(euler443(), 2744233049300770);
```
</div>
# --solutions--
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>