Skip to content

Add Georgian translation for "Fibonacci Number" #951

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/algorithms/math/fibonacci/README.fr-FR.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Nombre de Fibonacci

_Read this in other languages:_
[english](README.md).
[english](README.md),
[ქართული](README.ka-GE.md).

En mathématiques, la suite de Fibonacci est une suite d'entiers
dans laquelle chaque terme (après les deux premiers)
Expand Down
20 changes: 20 additions & 0 deletions src/algorithms/math/fibonacci/README.ka-GE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# ფიბონაჩის რიცხვი

მათემატიკაში ფიბონაჩის მიმდევრობა წარმოადგენს მთელ რიცხვთა მიმდევრობას,
რომელშიც ყოველი რიცხვი (პირველი ორი რიცხვის შემდეგ)
მისი წინამორბედი ორი რიცხვის
ჯამის ტოლია:

`0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...`

კვადრატების წყობა, სადაც ყოველი კვადრატის გვერდების სიგრძე, თანმიმდევრობით, ფიბონაჩის რიცხვებს შეესაბამება

![Fibonacci](https://upload.wikimedia.org/wikipedia/commons/d/db/34%2A21-FibonacciBlocks.png)

ფიბონაჩის სპირალი: ოქროს სპირალის აპროქსიმაცია, რომელიც შექმნილია კვადრატების მოპირდაპირე კუთხეებს შორის შემაერთებელი რკალების გავლებით;[4] ამ შემთხვევაში, გამოყენებულ კვადრატთა [გვერდების] ზომებია: 1, 1, 2, 3, 5, 8, 13 და 21.

![Fibonacci Spiral](https://upload.wikimedia.org/wikipedia/commons/2/2e/FibonacciSpiral.svg)

## სქოლიო

- [Wikipedia](https://en.wikipedia.org/wiki/Fibonacci_number)
3 changes: 2 additions & 1 deletion src/algorithms/math/fibonacci/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

_Read this in other languages:_
[français](README.fr-FR.md),
[简体中文](README.zh-CN.md).
[简体中文](README.zh-CN.md),
[ქართული](README.ka-GE.md).

In mathematics, the Fibonacci numbers are the numbers in the following
integer sequence, called the Fibonacci sequence, and characterized by
Expand Down
3 changes: 2 additions & 1 deletion src/algorithms/math/fibonacci/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

_Read this in other languages:_
[français](README.fr-FR.md),
[english](README.md).
[english](README.md),
[ქართული](README.ka-GE.md).

在数学中,斐波那契数是以下整数序列(称为斐波那契数列)中的数字,其特征在于前两个数字之后的每个数字都是前两个数字的和:

Expand Down