freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-369-badugi.md

56 lines
1.0 KiB
Markdown
Raw Normal View History

---
id: 5900f4de1000cf542c50fff0
challengeType: 5
videoUrl: ''
2020-10-01 15:54:21 +00:00
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>
## 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>