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,25 @@
---
id: 5900f44f1000cf542c50ff61
title: 问题227大通
challengeType: 5
videoUrl: ''
title: 问题227大通
---
## Description
<section id="description"> “追逐”是一个玩两个骰子和偶数玩家的游戏。 <p>球员坐在桌子旁;游戏开始于两个相对的玩家每个玩家有一个骰子。在每个回合中两个玩家都会掷骰子。如果一名球员掷出一个1他将骰子传给左边的邻居;如果他掷出一个6他就把骰子传给右边的邻居;否则,他会为下一个回合保留死亡。游戏结束时,一个玩家在滚动并通过后都有两个骰子;那个玩家失败了。 </p><p>在拥有100名玩家的游戏中游戏持续的预期轮数是多少将您的答案四舍五入到十位有效数字。 </p></section>
# --description--
## Instructions
<section id="instructions">
</section>
“追逐”是一个玩两个骰子和偶数玩家的游戏。
## Tests
<section id='tests'>
球员坐在桌子旁;游戏开始于两个相对的玩家每个玩家有一个骰子。在每个回合中两个玩家都会掷骰子。如果一名球员掷出一个1他将骰子传给左边的邻居;如果他掷出一个6他就把骰子传给右边的邻居;否则,他会为下一个回合保留死亡。游戏结束时,一个玩家在滚动并通过后都有两个骰子;那个玩家失败了。
```yml
tests:
- text: <code>euler227()</code>应返回3780.618622。
testString: assert.strictEqual(euler227(), 3780.618622);
在拥有100名玩家的游戏中游戏持续的预期轮数是多少将您的答案四舍五入到十位有效数字。
```
# --hints--
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
`euler227()`应返回3780.618622。
```js
function euler227() {
// Good luck!
return true;
}
euler227();
assert.strictEqual(euler227(), 3780.618622);
```
</div>
# --solutions--
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>