From 26a27f360a86548039af5dd0e1d593569a37c3b4 Mon Sep 17 00:00:00 2001 From: "David (Dato) Kadaria" <94402615+davidkadaria@users.noreply.github.com> Date: Mon, 10 Oct 2022 17:02:41 +0400 Subject: [PATCH] Add Georgian translation for 'algorithms: Factorial' (#947) * Translated Factorial * Renamed file and added link to it from the original file * Replaced Wikipedia link with Georgian version --- src/algorithms/math/factorial/README.ka-GE.md | 32 +++++++++++++++++++ src/algorithms/math/factorial/README.md | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 src/algorithms/math/factorial/README.ka-GE.md diff --git a/src/algorithms/math/factorial/README.ka-GE.md b/src/algorithms/math/factorial/README.ka-GE.md new file mode 100644 index 00000000..1d02b9f7 --- /dev/null +++ b/src/algorithms/math/factorial/README.ka-GE.md @@ -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) diff --git a/src/algorithms/math/factorial/README.md b/src/algorithms/math/factorial/README.md index 032121df..5f7f0e11 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.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