Skip to content

Commit

Permalink
Add Georgian translation for 'algorithms: Factorial' (trekhleb#947)
Browse files Browse the repository at this point in the history
* Translated Factorial

* Renamed file and added link to it from the original file

* Replaced Wikipedia link with Georgian version
  • Loading branch information
davidkadaria committed Oct 10, 2022
1 parent d3c0ee6 commit 26a27f3
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions src/algorithms/math/factorial/README.ka-GE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# ფაქტორიალი

მათემატიკაში `n` ნატურალური რიცხვის ფაქტორიალი
(აღინიშნება `n!` სიმბოლოთი)
არის ყველა ნატურალური რიცხვის ნამრავლი 1-იდან `n`-ის ჩათვლით. მაგალითად:

```
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 |

## სქოლიო

[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)
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), [turkish](README.tr-TR.md).
[_简体中文_](README.zh-CN.md), [français](README.fr-FR.md), [turkish](README.tr-TR.md), [ქართული](README.ka-GE.md).

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

0 comments on commit 26a27f3

Please sign in to comment.