...

/

Exercise 14: Recursion

Exercise 14: Recursion

Let's test your ability to use recursion.

Problem Statement

Implement a recursive function that takes a number nn as input, and output the nthnth term of the Fibonacci series.

The Fibonacci sequence is 0,1,1,2,3,5,8,13,210, 1, 1, 2, 3, 5, 8, 13, 21 ...