mirror of
https://github.com/trekhleb/javascript-algorithms.git
synced 2026-03-13 08:51:02 +08:00
Chore(math-translation-FR-fr): a pack of translations for the math section (#558)
* chore(factorial): translation fr-FR * feat(math-translation-fr-FR): fast powering * feat(math-translation-fr-FR): fibonacci numbers * chore(math-translation-fr-FR): bits * chore(math-translation-fr-FR): complex number * chore(math-translation-fr-FR): euclidean algorithm * chore(math-translation-fr-FR): fibonacci number * chore(math-translation-fr-FR): fourier transform * chore(math-translation-fr-FR): fourier transform WIP * chore(math-translation-fr-FR): fourier transform done * chore(math-translation-fr-FR): fourier transform in menu
This commit is contained in:
23
src/algorithms/math/fibonacci/README.fr-FR.md
Normal file
23
src/algorithms/math/fibonacci/README.fr-FR.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# Nombre de Fibonacci
|
||||
|
||||
_Read this in other languages:_
|
||||
[english](README.md).
|
||||
|
||||
En mathématiques, la suite de Fibonacci est une suite d'entiers
|
||||
dans laquelle chaque terme (après les deux premiers)
|
||||
est la somme des deux termes qui le précèdent.
|
||||
Les termes de cette suite sont appelés nombres de Fibonacci:
|
||||
|
||||
`0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...`
|
||||
|
||||
Les carrés de Fibonacci en spirale s'ajustent ensemble pour former une spirale d'or.
|
||||
|
||||

|
||||
|
||||
La spirale de Fibonacci: approximation d'une spirale d'or créée en dessinant des arcs de cercle reliant les coins opposés de carrés dans un pavage Fibonacci[4] . Celui-ci utilise des carrés de tailles 1, 1, 2, 3, 5, 8, 13, 21, et 34.
|
||||
|
||||

|
||||
|
||||
## References
|
||||
|
||||
- [Wikipedia](https://fr.wikipedia.org/wiki/Suite_de_Fibonacci)
|
||||
@@ -1,8 +1,11 @@
|
||||
# Fibonacci Number
|
||||
|
||||
In mathematics, the Fibonacci numbers are the numbers in the following
|
||||
integer sequence, called the Fibonacci sequence, and characterized by
|
||||
the fact that every number after the first two is the sum of the two
|
||||
_Read this in other languages:_
|
||||
[français](README.fr-FR.md).
|
||||
|
||||
In mathematics, the Fibonacci numbers are the numbers in the following
|
||||
integer sequence, called the Fibonacci sequence, and characterized by
|
||||
the fact that every number after the first two is the sum of the two
|
||||
preceding ones:
|
||||
|
||||
`0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...`
|
||||
|
||||
Reference in New Issue
Block a user