freeCodeCamp/curriculum/challenges/italian/10-coding-interview-prep/rosetta-code/factorial.md

1.1 KiB

id title challengeType forumTopicId dashedName
597b2b2a2702b44414742771 Fattoriale 5 302263 factorial

--description--

Scrivi una funzione che restituisce il fattoriale di un numero.

Il fattoriale di un numero è dato da:

n! = n * (n-1) * (n-2) * ..... * 1

Ad esempio:

  • 3! = 3 * 2 * 1 = 6
  • 4! = 4 * 3 * 2 * 1 = 24

Nota: 0! = 1

--hints--

factorial dovrebbe essere una funzione.

assert(typeof factorial === 'function');

factorial(2) dovrebbe restituire un numero.

assert(typeof factorial(2) === 'number');

factorial(3) dovrebbe restituire 6.

assert.equal(factorial(3), 6);

factorial(5) dovrebbe restituire 120.

assert.equal(factorial(5), 120);

factorial(10) dovrebbe restituire 3,628,800.

assert.equal(factorial(10), 3628800);

--seed--

--seed-contents--

function factorial(n) {

}

--solutions--

function factorial(n) {
  let sum = 1;
  while (n > 1) {
    sum *= n;
    n--;
  }
  return sum;
}