mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-11-10 11:09:43 +08:00
Factorial turkish readme (#740)
* added turkish readme for factorial * Added redirect link to Turkish document.
This commit is contained in:
parent
00887c2d40
commit
c1b2e893ff
@ -1,7 +1,7 @@
|
|||||||
# Factorial
|
# Factorial
|
||||||
|
|
||||||
_Read this in other languages:_
|
_Read this in other languages:_
|
||||||
[_简体中文_](README.zh-CN.md), [français](README.fr-FR.md).
|
[_简体中文_](README.zh-CN.md), [français](README.fr-FR.md), [turkish](README.tr-TR.md).
|
||||||
|
|
||||||
In mathematics, the factorial of a non-negative integer `n`,
|
In mathematics, the factorial of a non-negative integer `n`,
|
||||||
denoted by `n!`, is the product of all positive integers less
|
denoted by `n!`, is the product of all positive integers less
|
||||||
|
38
src/algorithms/math/factorial/README.tr-TR.md
Normal file
38
src/algorithms/math/factorial/README.tr-TR.md
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# Faktöriyel
|
||||||
|
|
||||||
|
_Bunu diğer dillerde okuyun:_
|
||||||
|
[_简体中文_](README.zh-CN.md), [français](README.fr-FR.md).
|
||||||
|
|
||||||
|
Faktöriyel, matematikte, sağına ünlem işareti konulmuş sayıya
|
||||||
|
verilen isim, daha genel olan Gama fonksiyonunun tam sayılarla
|
||||||
|
sınırlanmış özel bir durumudur. 1'den başlayarak belirli bir
|
||||||
|
sayma sayısına kadar olan sayıların çarpımına o sayının
|
||||||
|
faktöriyeli denir. Basit bir şekilde faktöriyel, n tane ayrık
|
||||||
|
elemanın kaç farklı şekilde sıralanabileceğidir.
|
||||||
|
|
||||||
|
```
|
||||||
|
5! = 5 * 4 * 3 * 2 * 1 = 120
|
||||||
|
```
|
||||||
|
|
||||||
|
| n | n! |
|
||||||
|
| --- | ----------------: |
|
||||||
|
| 0 | 1 |
|
||||||
|
| 1 | 1 |
|
||||||
|
| 2 | 2 |
|
||||||
|
| 3 | 6 |
|
||||||
|
| 4 | 24 |
|
||||||
|
| 5 | 120 |
|
||||||
|
| 6 | 720 |
|
||||||
|
| 7 | 5 040 |
|
||||||
|
| 8 | 40 320 |
|
||||||
|
| 9 | 362 880 |
|
||||||
|
| 10 | 3 628 800 |
|
||||||
|
| 11 | 39 916 800 |
|
||||||
|
| 12 | 479 001 600 |
|
||||||
|
| 13 | 6 227 020 800 |
|
||||||
|
| 14 | 87 178 291 200 |
|
||||||
|
| 15 | 1 307 674 368 000 |
|
||||||
|
|
||||||
|
## Referanslar
|
||||||
|
|
||||||
|
[Wikipedia](https://en.wikipedia.org/wiki/Factorial)
|
Loading…
Reference in New Issue
Block a user