From 9bfa6513479601273f12cad3dba59988fa6ec823 Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 4 Feb 2021 22:52:51 +0000 Subject: [PATCH] changes upon review --- subjects/fibonacci2/README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/subjects/fibonacci2/README.md b/subjects/fibonacci2/README.md index 2b53c86b7..5b06a3940 100644 --- a/subjects/fibonacci2/README.md +++ b/subjects/fibonacci2/README.md @@ -7,9 +7,6 @@ Complete the body of the **function** `fibonacci`. This functions receives a number `n` and returns the nth number in the fibonacci series. The Fibonacci Series starts like this: 0, 1, 1, 2, 3, 5, 8, 13 etc... -Each number in the series is calculated by the summing of the two previous ones (With the exception of the two first ones which are defined as 0 and 1). -- so fibonacci(2) = 1 (1 + 1) -- and fibonnacci(4) = 3 (1 + 2) ### Notions