Find the N-th Fibonacci Number - Recursive Approach
The Fibonacci sequence can also be implemented recursively.
Your task is to write a function (def getNthFibRecursive(n)) that returns the N-th Fibonacci number using recursion.
Assistant
ADVANCED
There are no submissions yet. Press Submit button.