feat: enable new langs (#42491)

Enable italian and portuguese
This commit is contained in:
Nicholas Carrigan (he/him)
2021-06-15 00:49:18 -07:00
committed by GitHub
parent d8d6d20793
commit f25e3e69f8
3301 changed files with 423168 additions and 6 deletions

View File

@ -0,0 +1,44 @@
---
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--
`euler205()` should return 0.5731441.
```js
assert.strictEqual(euler205(), 0.5731441);
```
# --seed--
## --seed-contents--
```js
function euler205() {
return true;
}
euler205();
```
# --solutions--
```js
// solution required
```