diff options
| -rw-r--r-- | README.md | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -188,3 +188,17 @@ Workbench - Version (1 - many) - Control -> navigate -> time travel -> history + +# Recursion + +The Fibonacci numbers are the numbers in the following integer sequence. +0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ... + +```plaintext + Fn = Fn-1 + Fn-2 + F0 = 0 and F1 = 1 +``` + +Problem: + +Given a number n, print n-th Fibonacci Number. |
