chore(i18n,learn): processed translations (#45299)

This commit is contained in:
camperbot
2022-03-01 21:39:26 +05:30
committed by GitHub
parent c6ec2512ad
commit d62fec495b
61 changed files with 752 additions and 606 deletions

View File

@ -1,6 +1,6 @@
---
id: 5900f4aa1000cf542c50ffbc
title: 'Problem 317: Firecracker'
title: 'Problema 317: Petardo'
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.
Un petardo esplode a un'altezza di 100 m dal livello del suolo. Si rompe in un gran numero di frammenti molto piccoli, che si muovono in ogni direzione; tutti hanno la stessa velocità iniziale di 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.
Supponiamo che i frammenti si muovano senza resistenza all'aria, in un campo gravitazionale uniforme con $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.
Trova il volume (in $\text{m}^3$) della regione attraverso la quale i frammenti si muovono prima di raggiungere il suolo. Dai la risposta arrotondata a quattro decimali.
# --hints--
`euler317()` should return 1856532.8455.
`firecracker()` dovrebbe restituire `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--