freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-205-dice-game.arabi...

55 lines
607 B
Markdown

---
id: 5900f4391000cf542c50ff4c
challengeType: 5
title: 'Problem 205: Dice Game'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler205(), 0.5731441, "<code>euler205()</code> should return 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>