Skip to content

Commit

Permalink
feat: added Ukrainian translation for factorial (#1006)
Browse files Browse the repository at this point in the history
* added Ukrainian translations for factorial

* added links to other languages

* formatting

* delete link

* Türkçe

---------

Co-authored-by: VictorPoprozhuk <victor.poprozhuk@gmail.com>
  • Loading branch information
YaroslavPodorvanov and VictorPoprozhuk committed Mar 16, 2023
1 parent 1ad60dc commit b9304f4
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
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.ka-GE.md).
[_简体中文_](README.zh-CN.md), [_Français_](README.fr-FR.md), [_Türkçe_](README.tr-TR.md), [_ქართული_](README.ka-GE.md), [_Українська_](README.uk-UA.md).

In mathematics, the factorial of a non-negative integer `n`,
denoted by `n!`, is the product of all positive integers less
Expand Down
33 changes: 33 additions & 0 deletions src/algorithms/math/factorial/README.uk-UA.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Факторіал

_Прочитайте це іншими мовами:_
[_English_](README.md), [_简体中文_](README.zh-CN.md), [_Français_](README.fr-FR.md), [_Türkçe_](README.tr-TR.md), [_ქართული_](README.ka-GE.md).

У математиці факторіал невід'ємного цілого числа `n`, позначений `n!`, є добутком усіх натуральних чисел, менших або рівних `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://uk.wikipedia.org/wiki/%D0%A4%D0%B0%D0%BA%D1%82%D0%BE%D1%80%D1%96%D0%B0%D0%BB)
2 changes: 1 addition & 1 deletion src/data-structures/linked-list/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ _Read this in other languages:_
[_Português_](README.pt-BR.md),
[_한국어_](README.ko-KR.md),
[_Español_](README.es-ES.md),
[_Turkish_](README.tr-TR.md),
[_Türkçe_](README.tr-TR.md),
[_Українська_](README.uk-UA.md)

In computer science, a **linked list** is a linear collection
Expand Down

0 comments on commit b9304f4

Please sign in to comment.