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: 5900f4391000cf542c50ff4c
challengeType: 5
title: 'Problem 205: Dice Game'
videoUrl: ''
localeTitle: 问题205骰子游戏
---
## Description
<section id="description">彼得有九个四面金字塔骰子每个骰子都有编号为1,2,3,4的面孔。科林有六个六面立方体骰子每个骰子都有编号为1,2,3,4,5,6的面孔。 <p>彼得和科林掷骰子并比较总数:总得分最高。如果总数相等,结果是平局。 </p><p>金字塔皮特击败立方科林的几率是多少将您的答案四舍五入到0.abcdefg形式的七位小数</p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler205()</code>应该返回0.5731441。
testString: assert.strictEqual(euler205(), 0.5731441);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler205() {
// Good luck!
return true;
}
euler205();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>