Files
gikf eef1805fe6 fix(curriculum): clean-up Project Euler 201-220 (#42826)
* fix: clean-up Project Euler 201-220

* fix: corrections from review

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
2021-07-15 09:20:31 +02:00

45 lines
837 B
Markdown

---
id: 5900f4391000cf542c50ff4c
title: 'Problem 205: Dice Game'
challengeType: 5
forumTopicId: 301846
dashedName: problem-205-dice-game
---
# --description--
Peter has nine four-sided (pyramidal) dice, each with faces numbered 1, 2, 3, 4.
Colin has six six-sided (cubic) dice, each with faces numbered 1, 2, 3, 4, 5, 6.
Peter and Colin roll their dice and compare totals: the highest total wins. The result is a draw if the totals are equal.
What is the probability that Pyramidal Pete beats Cubic Colin? Give your answer rounded to seven decimal places in the form 0.abcdefg
# --hints--
`diceGame()` should return `0.5731441`.
```js
assert.strictEqual(diceGame(), 0.5731441);
```
# --seed--
## --seed-contents--
```js
function diceGame() {
return true;
}
diceGame();
```
# --solutions--
```js
// solution required
```