Solution Review 3: Find nth Fibonacci Number
This lesson gives a detailed review of the challenge in the previous lesson.
We'll cover the following...
We'll cover the following...
Solution:
Explanation
A recursive function, fibonacci, takes a parameter term of type i32 and returns an integer of type i32, i.e., the nth term of the Fibonacci number.
The recursive function ...