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: 5900f4de1000cf542c50fff0
title: 问题369Badugi
challengeType: 5
videoUrl: ''
title: 问题369Badugi
---
## Description
<section id="description">在标准的52张扑克牌中一套4张牌是Badugi如果它包含4张没有成对的牌而没有两张相同牌的牌。 <p>设fn是选择n卡的方式的数量其中4卡的子集是Badugi。例如有2598960种方法可以从标准的52卡片组中选择5张卡片其中514800包含4个卡片子集这是Badugi因此f5= 514800。 </p><p>找到Σfn为4≤n≤13。 </p></section>
# --description--
## Instructions
<section id="instructions">
</section>
在标准的52张扑克牌中一套4张牌是Badugi如果它包含4张没有成对的牌而没有两张相同牌的牌。
## Tests
<section id='tests'>
设fn是选择n卡的方式的数量其中4卡的子集是Badugi。例如有2598960种方法可以从标准的52卡片组中选择5张卡片其中514800包含4个卡片子集这是Badugi因此f5= 514800。
```yml
tests:
- text: <code>euler369()</code>应该返回862400558448。
testString: assert.strictEqual(euler369(), 862400558448);
找到Σfn为4≤n≤13。
```
# --hints--
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
`euler369()`应该返回862400558448。
```js
function euler369() {
// Good luck!
return true;
}
euler369();
assert.strictEqual(euler369(), 862400558448);
```
</div>
# --solutions--
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>