Challenge: Fibonacci Sequence
Practice your concepts of recursion by writing a function to calculate the Fibonacci sequence.
We'll cover the following...
Problem Statement
In this exercise, you have to write a recursive function fibonacci
that takes an integer range
as a parameter and returns the ...