Problem Statement
Given an integer n
, return the n
th number in the Fibonacci sequence. The Fibonacci sequence is defined as follows:
F(0) = 0, F(1) = 1
F(n) = F(n-1) + F(n-2)
for n > 1
Example
Input: n = 5
Output: 5
Explanation: The 5th Fibonacci number is 5.
Input: n = 10
Output: 55
Explanation: The 10th Fibonacci number is 55.
Constraints
Expected Challenge Output
When the function fibonacci
is called with the given example inputs, the expected outputs are:
- For the input
5
, the output is 5
.
- For the input
10
, the output is 55
.