fix: replace .chinese.md extension with .md

This commit is contained in:
Oliver Eyton-Williams
2020-09-29 19:06:51 +02:00
parent 2b9e38a17b
commit 41b7a33100
1588 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,56 @@
---
id: 5900f4de1000cf542c50fff0
challengeType: 5
title: 'Problem 369: Badugi'
videoUrl: ''
localeTitle: 问题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>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler369()</code>应该返回862400558448。
testString: assert.strictEqual(euler369(), 862400558448);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler369() {
// Good luck!
return true;
}
euler369();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>