freeCodeCamp/curriculum/challenges/italian/10-coding-interview-prep/project-euler/problem-222-sphere-packing.md

693 B

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