2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
id: 597b2b2a2702b44414742771
|
2020-11-27 19:02:05 +01:00
|
|
|
title: Factorial
|
2018-09-30 23:01:58 +01:00
|
|
|
challengeType: 5
|
2019-08-05 09:17:33 -07:00
|
|
|
forumTopicId: 302263
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: factorial
|
2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --description--
|
|
|
|
|
2019-03-02 21:27:55 +09:00
|
|
|
Write a function to return the factorial of a number.
|
2020-11-27 19:02:05 +01:00
|
|
|
|
2019-03-02 21:27:55 +09:00
|
|
|
Factorial of a number is given by:
|
2020-11-27 19:02:05 +01:00
|
|
|
|
|
|
|
<pre><big>n! = n * (n-1) * (n-2) * ..... * 1</big>
|
2019-03-02 21:27:55 +09:00
|
|
|
</pre>
|
2020-11-27 19:02:05 +01:00
|
|
|
|
2019-03-02 21:27:55 +09:00
|
|
|
For example:
|
2020-11-27 19:02:05 +01:00
|
|
|
|
2019-03-02 21:27:55 +09:00
|
|
|
<ul>
|
2019-06-14 20:04:16 +09:00
|
|
|
<li><code>3! = 3 * 2 * 1 = 6</code></li>
|
|
|
|
<li><code>4! = 4 * 3 * 2 * 1 = 24</code></li>
|
2019-03-02 21:27:55 +09:00
|
|
|
</ul>
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
**Note:** `0! = 1`
|
|
|
|
|
|
|
|
# --hints--
|
|
|
|
|
|
|
|
`factorial` should be a function.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(typeof factorial === 'function');
|
2018-09-30 23:01:58 +01:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`factorial(2)` should return a number.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(typeof factorial(2) === 'number');
|
|
|
|
```
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`factorial(3)` should return 6.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
```js
|
2020-11-27 19:02:05 +01:00
|
|
|
assert.equal(factorial(3), 6);
|
|
|
|
```
|
2020-09-15 09:57:40 -07:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`factorial(5)` should return 120.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert.equal(factorial(5), 120);
|
|
|
|
```
|
|
|
|
|
|
|
|
`factorial(10)` should return 3,628,800.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert.equal(factorial(10), 3628800);
|
2018-09-30 23:01:58 +01:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --seed--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
## --seed-contents--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
function factorial(n) {
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
}
|
|
|
|
```
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --solutions--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
```js
|
|
|
|
function factorial(n) {
|
|
|
|
let sum = 1;
|
|
|
|
while (n > 1) {
|
|
|
|
sum *= n;
|
|
|
|
n--;
|
|
|
|
}
|
|
|
|
return sum;
|
|
|
|
}
|
|
|
|
```
|