chore(i18n,curriculum): processed translations (#44221)

This commit is contained in:
camperbot
2021-11-19 10:31:54 -08:00
committed by GitHub
parent db4bdf4478
commit fecb10e611
25 changed files with 337 additions and 298 deletions

View File

@ -1,6 +1,6 @@
---
id: 5900f4aa1000cf542c50ffbc
title: 'Problem 317: Firecracker'
title: 'Problema 317: Fogos de artifício'
challengeType: 5
forumTopicId: 301973
dashedName: problem-317-firecracker
@ -8,18 +8,18 @@ dashedName: problem-317-firecracker
# --description--
A firecracker explodes at a height of 100 m above level ground. It breaks into a large number of very small fragments, which move in every direction; all of them have the same initial velocity of 20 m/s.
Um fogo de artifício explode a uma altura de 100 m acima do solo. Ele explode em um grande número de fragmentos muito pequenos, que se movem em todas as direções; todos eles têm a mesma velocidade inicial de 20 $\frac{\text{m}}{\text{s}}$.
We assume that the fragments move without air resistance, in a uniform gravitational field with g=9.81 m/s2.
Assumimos que os fragmentos se movem sem resistência do ar, em um campo gravitacional uniforme com $g=9,81 \frac{\text{m}}{\text{s}^2}$.
Find the volume (in m3) of the region through which the fragments move before reaching the ground. Give your answer rounded to four decimal places.
Encontre o volume (em $\text{m}^3$) da região através da qual os fragmentos se movem antes de chegar ao chão. Dê sua resposta arredondada para quatro casas decimais.
# --hints--
`euler317()` should return 1856532.8455.
`firecracker()` deve retornar `1856532.8455`.
```js
assert.strictEqual(euler317(), 1856532.8455);
assert.strictEqual(firecracker(), 1856532.8455);
```
# --seed--
@ -27,12 +27,12 @@ assert.strictEqual(euler317(), 1856532.8455);
## --seed-contents--
```js
function euler317() {
function firecracker() {
return true;
}
euler317();
firecracker();
```
# --solutions--