From c9ad976fcb9f35bb21806da97aa29404de27e757 Mon Sep 17 00:00:00 2001 From: Rushil Jalal Date: Fri, 28 Jul 2023 19:32:21 +0530 Subject: [PATCH 1/3] Update README.md --- 10_fibonacci/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/10_fibonacci/README.md b/10_fibonacci/README.md index 63c47b6..66ef776 100644 --- a/10_fibonacci/README.md +++ b/10_fibonacci/README.md @@ -2,7 +2,8 @@ Create a function that returns a specific member of the Fibonacci sequence: -> A series of numbers in which each number ( Fibonacci number ) is the sum of the two preceding numbers. The simplest is the series 0, 1, 1, 2, 3, 5, 8, etc. +> A series of numbers in which each number ( Fibonacci number ) is the sum of the two preceding numbers. In this exercise, the series starts from 1, 1, 2, 3, 5, 8... but it can also start from 0, 1, 1, 2, 3, 5... +> To learn more about Fibonacci sequences, go to: https://en.wikipedia.org/wiki/Fibonacci_sequence ```javascript fibonacci(4); // returns the 4th member of the series: 3 (1, 1, 2, 3) From 631d24936b5b2e779f5b7d4f6d1a3210087b2397 Mon Sep 17 00:00:00 2001 From: Rushil Jalal Date: Fri, 28 Jul 2023 19:49:32 +0530 Subject: [PATCH 2/3] Update README.md --- 10_fibonacci/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/10_fibonacci/README.md b/10_fibonacci/README.md index 66ef776..0fc3d46 100644 --- a/10_fibonacci/README.md +++ b/10_fibonacci/README.md @@ -2,7 +2,8 @@ Create a function that returns a specific member of the Fibonacci sequence: -> A series of numbers in which each number ( Fibonacci number ) is the sum of the two preceding numbers. In this exercise, the series starts from 1, 1, 2, 3, 5, 8... but it can also start from 0, 1, 1, 2, 3, 5... +> A series of numbers in which each number ( Fibonacci number ) is the sum of the two preceding numbers. +> In this exercise, the Fibonacci sequence used is 1, 1, 2, 3, 5, 8... > To learn more about Fibonacci sequences, go to: https://en.wikipedia.org/wiki/Fibonacci_sequence ```javascript From 43a8b165b455ad5970ccb917334fbd9fc3e46c31 Mon Sep 17 00:00:00 2001 From: Rushil Jalal Date: Tue, 1 Aug 2023 13:13:38 +0530 Subject: [PATCH 3/3] Update 10_fibonacci/README.md Co-authored-by: Manon <81025586+ManonLef@users.noreply.github.com> --- 10_fibonacci/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/10_fibonacci/README.md b/10_fibonacci/README.md index 0fc3d46..718b25a 100644 --- a/10_fibonacci/README.md +++ b/10_fibonacci/README.md @@ -3,7 +3,7 @@ Create a function that returns a specific member of the Fibonacci sequence: > A series of numbers in which each number ( Fibonacci number ) is the sum of the two preceding numbers. -> In this exercise, the Fibonacci sequence used is 1, 1, 2, 3, 5, 8... +> In this exercise, the Fibonacci sequence used is 1, 1, 2, 3, 5, 8, etc. > To learn more about Fibonacci sequences, go to: https://en.wikipedia.org/wiki/Fibonacci_sequence ```javascript