mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-08 00:00:41 -04:00
693 B
693 B
id, title, challengeType, forumTopicId, dashedName
| id | title | challengeType | forumTopicId | dashedName |
|---|---|---|---|---|
| 5900f44b1000cf542c50ff5d | Problema 222: Imballaggio di una sfera | 1 | 301865 | problem-222-sphere-packing |
--description--
Qual è la lunghezza del tubo più corto, di raggio interno 50mm, che può contenere completamente 21 sfere di raggio 30mm, 31mm, ..., 50mm?
Dai la tua risposta in micrometri ({10}^{-6} m) arrotondata al numero intero più vicino.
--hints--
spherePacking() dovrebbe restituire 1590933.
assert.strictEqual(spherePacking(), 1590933);
--seed--
--seed-contents--
function spherePacking() {
return true;
}
spherePacking();
--solutions--
// solution required