Files
freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/rosetta-code/factorial.spanish.md

91 lines
1.7 KiB
Markdown
Raw Normal View History

2018-10-08 13:34:43 -04:00
---
title: Factorial
id: 597b2b2a2702b44414742771
localeTitle: 597b2b2a2702b44414742771
challengeType: 5
---
## Description
<section id='description'>
<p> Escribe una función para devolver el factorial de un número. </p>
<p> El factorial de un número viene dado por: </p>
n! = n * (n-1) * (n-2) * ..... * 1
<p>
Por ejemplo:
3! = 3 * 2 * 1 = 6
4! = 4 * 3 * 2 * 1 = 24
</p>
<p> Nota:
0! = 1
</p>
2018-10-08 13:34:43 -04:00
</section>
## Instructions
<section id='instructions'>
2018-10-08 13:34:43 -04:00
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>factorial</code> es una función.
testString: 'assert(typeof factorial === "function", "<code>factorial</code> is a function.");'
- text: <code>factorial(2)</code> debe devolver un número.
testString: 'assert(typeof factorial(2) === "number", "<code>factorial(2)</code> should return a number.");'
- text: <code>factorial(3)</code> debe devolver 6. &quot;)
testString: 'assert.equal(factorial(3),results[0],"<code>factorial(3)</code> should return 6.");'
- text: <code>factorial(3)</code> debe devolver 120. &quot;)
testString: 'assert.equal(factorial(5),results[1],"<code>factorial(3)</code> should return 120.");'
- text: ' <code>factorial(3)</code> debe devolver 3,628,800. &quot;)'
2018-10-08 13:34:43 -04:00
testString: 'assert.equal(factorial(10),results[2],"<code>factorial(3)</code> should return 3,628,800.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function factorial (n) {
// Good luck!
}
```
</div>
### After Test
<div id='js-teardown'>
```js
console.info('after the test');
```
</div>
</section>
## Solution
<section id='solution'>
```js
function factorial(n) {
let sum = 1;
while (n > 1) {
sum *= n;
n--;
}
return sum;
}
```
</section>