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,12 +1,12 @@
---
id: 5900f5241000cf542c510037
title: 问题440GCD和平铺
challengeType: 5
videoUrl: ''
title: 问题440GCD和平铺
---
## Description
<section id="description">
# --description--
我们要完全平铺一块长度为n且高度为1的板上面有1×2块或1×1块上面有一个十进制数字
例如以下是铺砌长度为n = 8的板的一些方法
@ -15,57 +15,17 @@ title: 问题440GCD和平铺
例如T1= 10且T2= 101。
令SL为1≤abc≤L的三次和∑abc gcdTcaTcb
例如:
S2= 10444
S3= 1292115238446807016106539989
S4模数987898789 = 670616280。
令SL为1≤abc≤L的三次和∑abc gcdTcaTcb 例如: S2= 10444 S3= 1292115238446807016106539989 S4模数987898789 = 670616280。
找出S2000mod 987898898。
</section>
## Instructions
<section id="instructions">
</section>
# --hints--
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler440()</code>应该返回970746056。
testString: assert.strictEqual(euler440(), 970746056);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
`euler440()`应该返回970746056。
```js
function euler440() {
// Good luck!
return true;
}
euler440();
assert.strictEqual(euler440(), 970746056);
```
</div>
# --solutions--
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>