feat: added Ukrainian translation for factorial (#1006)

* added Ukrainian translations for factorial

* added links to other languages

* formatting

* delete link

* Türkçe

---------

Co-authored-by: VictorPoprozhuk <victor.poprozhuk@gmail.com>
This commit is contained in:
Yaroslav Podorvanov 2023-03-16 21:40:41 +02:00 committed by GitHub
parent 1ad60dc510
commit b9304f4787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 2 deletions

View File

@ -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), [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`, 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

View File

@ -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)

View File

@ -7,7 +7,7 @@ _Read this in other languages:_
[_Português_](README.pt-BR.md), [_Português_](README.pt-BR.md),
[_한국어_](README.ko-KR.md), [_한국어_](README.ko-KR.md),
[_Español_](README.es-ES.md), [_Español_](README.es-ES.md),
[_Turkish_](README.tr-TR.md), [_Türkçe_](README.tr-TR.md),
[_Українська_](README.uk-UA.md) [_Українська_](README.uk-UA.md)
In computer science, a **linked list** is a linear collection In computer science, a **linked list** is a linear collection