From b9304f4787c9586ad146f24e305244d0df95e080 Mon Sep 17 00:00:00 2001 From: Yaroslav Podorvanov <63663261+YaroslavPodorvanov@users.noreply.github.com> Date: Thu, 16 Mar 2023 21:40:41 +0200 Subject: [PATCH] feat: added Ukrainian translation for factorial (#1006) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * added Ukrainian translations for factorial * added links to other languages * formatting * delete link * Türkçe --------- Co-authored-by: VictorPoprozhuk --- src/algorithms/math/factorial/README.md | 2 +- src/algorithms/math/factorial/README.uk-UA.md | 33 +++++++++++++++++++ src/data-structures/linked-list/README.md | 2 +- 3 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 src/algorithms/math/factorial/README.uk-UA.md diff --git a/src/algorithms/math/factorial/README.md b/src/algorithms/math/factorial/README.md index 5f7f0e11..9c75b41a 100644 --- a/src/algorithms/math/factorial/README.md +++ b/src/algorithms/math/factorial/README.md @@ -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 diff --git a/src/algorithms/math/factorial/README.uk-UA.md b/src/algorithms/math/factorial/README.uk-UA.md new file mode 100644 index 00000000..bf759631 --- /dev/null +++ b/src/algorithms/math/factorial/README.uk-UA.md @@ -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) diff --git a/src/data-structures/linked-list/README.md b/src/data-structures/linked-list/README.md index bb30b075..825a0272 100644 --- a/src/data-structures/linked-list/README.md +++ b/src/data-structures/linked-list/README.md @@ -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