--- id: 5900f4391000cf542c50ff4c challengeType: 5 title: 'Problem 205: Dice Game' videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert.strictEqual(euler205(), 0.5731441, "euler205() should return 0.5731441.");' ```
## Challenge Seed
```js function euler205() { // Good luck! return true; } euler205(); ```
## Solution
```js // solution required ```