Challenge 3: Find nth Fibonacci Number
This challenge will test your knowledge of recursion.
We'll cover the following...
Problem Statement #
In this exercise, you have to write a recursive function fibonacci that takes a positive integer number n as a parameter and returns the nth Fibonacci term in that range. ...
Ask