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,23 @@
---
id: 5900f5061000cf542c510017
title: 问题409Nim Extreme
challengeType: 5
videoUrl: ''
title: 问题409Nim Extreme
---
## Description
<section id="description">设n是正整数。考虑nim位置有n个非空桩。每堆的尺寸小于2n。没有两个桩具有相同的尺寸。设Wn是满足上述条件的获胜nim位置的数量如果第一个玩家具有获胜策略则获胜的位置。例如W1= 1W2= 6W3= 168W5= 19764360W100mod 1 000 000 007 = 384777056。 <p>求W10 000 000mod 1 000 000 007。 </p></section>
# --description--
## Instructions
<section id="instructions">
</section>
设n是正整数。考虑nim位置有n个非空桩。每堆的尺寸小于2n。没有两个桩具有相同的尺寸。设Wn是满足上述条件的获胜nim位置的数量如果第一个玩家具有获胜策略则获胜的位置。例如W1= 1W2= 6W3= 168W5= 19764360W100mod 1 000 000 007 = 384777056。
## Tests
<section id='tests'>
求W10 000 000mod 1 000 000 007。
```yml
tests:
- text: <code>euler409()</code>应该返回253223948。
testString: assert.strictEqual(euler409(), 253223948);
# --hints--
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
`euler409()`应该返回253223948。
```js
function euler409() {
// Good luck!
return true;
}
euler409();
assert.strictEqual(euler409(), 253223948);
```
</div>
# --solutions--
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>