Skip to content

Commit

Permalink
Factorial turkish readme (trekhleb#740)
Browse files Browse the repository at this point in the history
* added turkish readme for factorial

* Added redirect link to Turkish document.
  • Loading branch information
muhammederdinc authored Jan 26, 2022
1 parent 00887c2 commit c1b2e89
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/algorithms/math/factorial/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Factorial

_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`,
denoted by `n!`, is the product of all positive integers less
Expand Down
38 changes: 38 additions & 0 deletions src/algorithms/math/factorial/README.tr-TR.md
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit c1b2e89

Please sign in to comment.