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: 5900f5371000cf542c51004a
title: 问题459翻转游戏
challengeType: 5
videoUrl: ''
title: 问题459翻转游戏
---
## Description
<section id="description">翻转游戏是在N×N方板上玩的双人游戏。每个方块包含一面白色和一面黑色的圆盘。游戏开始时所有磁盘都显示白色。 <p>转弯包括翻转具有以下属性的矩形中的所有磁盘矩形的右上角包含一个白色圆盘矩形宽度是一个完美的正方形1,4,9,16...矩形高度为三角形数字1,3,6,10 ...... </p><p>球员轮流转换。玩家通过将网格全黑变为胜利。 </p><p>假设完美游戏让WN为N×N板上第一个玩家的获胜动作数所有盘都是白色的。 W1= 1W2= 0W5= 8W102= 31395。 </p><p>对于N = 5第一个玩家的八个获胜第一步是 </p><p>找到W106</p></section>
# --description--
## Instructions
<section id="instructions">
</section>
翻转游戏是在N×N方板上玩的双人游戏。每个方块包含一面白色和一面黑色的圆盘。游戏开始时所有磁盘都显示白色。
## Tests
<section id='tests'>
转弯包括翻转具有以下属性的矩形中的所有磁盘矩形的右上角包含一个白色圆盘矩形宽度是一个完美的正方形1,4,9,16...矩形高度为三角形数字1,3,6,10 ......
```yml
tests:
- text: <code>euler459()</code>应该返回3996390106631。
testString: assert.strictEqual(euler459(), 3996390106631);
球员轮流转换。玩家通过将网格全黑变为胜利。
```
假设完美游戏让WN为N×N板上第一个玩家的获胜动作数所有盘都是白色的。 W1= 1W2= 0W5= 8W102= 31395。
</section>
对于N = 5第一个玩家的八个获胜第一步是
## Challenge Seed
<section id='challengeSeed'>
找到W106
<div id='js-seed'>
# --hints--
`euler459()`应该返回3996390106631。
```js
function euler459() {
// Good luck!
return true;
}
euler459();
assert.strictEqual(euler459(), 3996390106631);
```
</div>
# --solutions--
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>