...
/Challenge: Calculate the nth Fibonacci Number using Recursion
Challenge: Calculate the nth Fibonacci Number using Recursion
Test our knowledge by solving a challenge in this lesson.
We'll cover the following...
Problem statement
In this challenge, your task is to calculate the nth Fibonacci number in the Fibonacci series.
You have to write a recursive function fibonacci
. In the function parameter, you will pass the value of type ...