...

/

Challenge 3: Find nth Fibonacci Number

Challenge 3: Find nth Fibonacci Number

This challenge will test your knowledge of recursion.

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. ...