Skip to content

Commit 26a27f3

Browse files
authoredOct 10, 2022
Add Georgian translation for 'algorithms: Factorial' (trekhleb#947)
* Translated Factorial * Renamed file and added link to it from the original file * Replaced Wikipedia link with Georgian version
1 parent d3c0ee6 commit 26a27f3

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# ფაქტორიალი
2+
3+
მათემატიკაში `n` ნატურალური რიცხვის ფაქტორიალი
4+
(აღინიშნება `n!` სიმბოლოთი)
5+
არის ყველა ნატურალური რიცხვის ნამრავლი 1-იდან `n`-ის ჩათვლით. მაგალითად:
6+
7+
```
8+
5! = 5 * 4 * 3 * 2 * 1 = 120
9+
```
10+
11+
| n | n! |
12+
| --- | ----------------: |
13+
| 0 | 1 |
14+
| 1 | 1 |
15+
| 2 | 2 |
16+
| 3 | 6 |
17+
| 4 | 24 |
18+
| 5 | 120 |
19+
| 6 | 720 |
20+
| 7 | 5 040 |
21+
| 8 | 40 320 |
22+
| 9 | 362 880 |
23+
| 10 | 3 628 800 |
24+
| 11 | 39 916 800 |
25+
| 12 | 479 001 600 |
26+
| 13 | 6 227 020 800 |
27+
| 14 | 87 178 291 200 |
28+
| 15 | 1 307 674 368 000 |
29+
30+
## სქოლიო
31+
32+
[Wikipedia](https://ka.wikipedia.org/wiki/%E1%83%9B%E1%83%90%E1%83%97%E1%83%94%E1%83%9B%E1%83%90%E1%83%A2%E1%83%98%E1%83%99%E1%83%A3%E1%83%A0%E1%83%98_%E1%83%A4%E1%83%90%E1%83%A5%E1%83%A2%E1%83%9D%E1%83%A0%E1%83%98%E1%83%90%E1%83%9A%E1%83%98)

‎src/algorithms/math/factorial/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Factorial
22

33
_Read this in other languages:_
4-
[_简体中文_](README.zh-CN.md), [français](README.fr-FR.md), [turkish](README.tr-TR.md).
4+
[_简体中文_](README.zh-CN.md), [français](README.fr-FR.md), [turkish](README.tr-TR.md), [ქართული](README.ka-GE.md).
55

66
In mathematics, the factorial of a non-negative integer `n`,
77
denoted by `n!`, is the product of all positive integers less

0 commit comments

Comments
 (0)
Please sign in to comment.