chore(i18n,curriculum): update translations (#44283)

This commit is contained in:
camperbot
2021-11-29 08:32:04 -08:00
committed by GitHub
parent aa9215b111
commit a8b0332720
124 changed files with 1217 additions and 945 deletions

View File

@ -1,6 +1,6 @@
---
id: 5900f5411000cf542c510053
title: 'Problem 469: Empty chairs'
title: 'Problema 469: Cadeiras vazias'
challengeType: 5
forumTopicId: 302144
dashedName: problem-469-empty-chairs
@ -8,22 +8,24 @@ dashedName: problem-469-empty-chairs
# --description--
In a room N chairs are placed around a round table.
Em uma sala, $N$ cadeiras são colocadas ao redor de uma mesa redonda.
Knights enter the room one by one and choose at random an available empty chair.
Cavaleiros entram na sala um por um e escolhem aleatoriamente uma cadeira vazia disponível.
To have enough elbow room the knights always leave at least one empty chair between each other.
Para ter espaço suficiente, os cavaleiros sempre deixam pelo menos uma cadeira vazia entre eles.
When there aren't any suitable chairs left, the fraction C of empty chairs is determined. We also define E(N) as the expected value of C. We can verify that E(4) = 1/2 and E(6) = 5/9.
Quando não sobrar nenhuma cadeira apropriada, a fração $C$ de cadeiras vazias é determinada. Também definimos $E(N)$ como o valor esperado de $C$.
Find E(1018). Give your answer rounded to fourteen decimal places in the form 0.abcdefghijklmn.
Podemos verificar que $E(4) = \frac{1}{2}$ e $E(6) = \frac{5}{9}$.
Encontre $E({10}^{18})$. Arredonde sua resposta para até catorze casas decimais usando o formato 0.abcdefghijklmn.
# --hints--
`euler469()` should return 0.56766764161831.
`emptyChairs()` deve retornar `0.56766764161831`.
```js
assert.strictEqual(euler469(), 0.56766764161831);
assert.strictEqual(emptyChairs(), 0.56766764161831);
```
# --seed--
@ -31,12 +33,12 @@ assert.strictEqual(euler469(), 0.56766764161831);
## --seed-contents--
```js
function euler469() {
function emptyChairs() {
return true;
}
euler469();
emptyChairs();
```
# --solutions--