chore(i18n,curriculum): update translations (#43140)

This commit is contained in:
camperbot
2021-08-09 17:35:35 +09:00
committed by GitHub
parent dd5d2919be
commit 919728131e
64 changed files with 852 additions and 844 deletions

View File

@ -1,6 +1,6 @@
---
id: 597b2b2a2702b44414742771
title: Factorial
title: Fatorial
challengeType: 5
forumTopicId: 302263
dashedName: factorial
@ -8,49 +8,49 @@ dashedName: factorial
# --description--
Write a function to return the factorial of a number.
Escreva uma função que retorne o fatorial de um número.
Factorial of a number is given by:
O fatorial de um número é dado por:
<pre><big>n! = n * (n-1) * (n-2) * ..... * 1</big>
</pre>
For example:
Por exemplo:
<ul>
<li><code>3! = 3 * 2 * 1 = 6</code></li>
<li><code>4! = 4 * 3 * 2 * 1 = 24</code></li>
</ul>
**Note:** `0! = 1`
**Observação:** `0! = 1`
# --hints--
`factorial` should be a function.
`factorial` deve ser uma função.
```js
assert(typeof factorial === 'function');
```
`factorial(2)` should return a number.
`factorial(2)` deve retornar um número.
```js
assert(typeof factorial(2) === 'number');
```
`factorial(3)` should return 6.
`factorial(3)` deve retornar 6.
```js
assert.equal(factorial(3), 6);
```
`factorial(5)` should return 120.
`factorial(5)` deve retornar 120.
```js
assert.equal(factorial(5), 120);
```
`factorial(10)` should return 3,628,800.
`factorial(10)` deve retornar 3,628,800.
```js
assert.equal(factorial(10), 3628800);