chore(learn): Applied MDX format to Chinese curriculum files (#40462)
This commit is contained in:
@ -1,63 +1,29 @@
|
||||
---
|
||||
id: 5900f4a21000cf542c50ffb5
|
||||
title: 问题310:尼姆广场
|
||||
challengeType: 5
|
||||
videoUrl: ''
|
||||
title: 问题310:尼姆广场
|
||||
---
|
||||
|
||||
## Description
|
||||
<section id="description">
|
||||
# --description--
|
||||
|
||||
爱丽丝和鲍勃玩游戏Nim Square。
|
||||
|
||||
Nim Square就像普通的三堆普通游戏Nim一样,但是玩家只能从堆中取出一平方的石头。
|
||||
|
||||
三个堆中的石头数量由有序三元组(a,b,c)表示。
|
||||
|
||||
如果0≤a≤b≤c≤29,则下一个玩家的失落位数为1160。
|
||||
|
||||
|
||||
如果0≤a≤b≤c≤100000,则查找下一个玩家的失落位置数。
|
||||
</section>
|
||||
|
||||
## Instructions
|
||||
<section id="instructions">
|
||||
</section>
|
||||
# --hints--
|
||||
|
||||
## Tests
|
||||
<section id='tests'>
|
||||
|
||||
```yml
|
||||
tests:
|
||||
- text: <code>euler310()</code>应该返回2586528661783。
|
||||
testString: assert.strictEqual(euler310(), 2586528661783);
|
||||
|
||||
```
|
||||
|
||||
</section>
|
||||
|
||||
## Challenge Seed
|
||||
<section id='challengeSeed'>
|
||||
|
||||
<div id='js-seed'>
|
||||
`euler310()`应该返回2586528661783。
|
||||
|
||||
```js
|
||||
function euler310() {
|
||||
// Good luck!
|
||||
return true;
|
||||
}
|
||||
|
||||
euler310();
|
||||
|
||||
assert.strictEqual(euler310(), 2586528661783);
|
||||
```
|
||||
|
||||
</div>
|
||||
# --solutions--
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
## Solution
|
||||
<section id='solution'>
|
||||
|
||||
```js
|
||||
// solution required
|
||||
```
|
||||
|
||||
/section>
|
||||
|
Reference in New Issue
Block a user