Fibonnaci Calculator

Explanation

The Fibonnaci Sequence is a mathematical sequence of numbers defined by fib(n) = fib(n-1) + fib(n-2).

This is to say that for any given number in the Fibonnaci sequence, that number is the sum of the previous 2 numbers.

The first 10 numbers are as follows:

The Fibonnaci Sequence is famous for being a test of a programmers ability to optimise an algorithm as there are 2 possible methods. The recursive method with an efficiency of O(n) = 2^n and the iterative method with an efficiency of O(n) = n (read more about optimising alogorithms here).

Task

Your task is to write a function which takes a number and calculates the nth Fibonnaci number using the recursive method.

Test Input: 7, expected output: 8

Extension

Your task is to write a function which takes a number and calculates the nth Fibonnaci number using the iterative method.