This website uses cookies to enhance the user experience

Find Fibonacci Number at Nth Position

Difficulty: 💪🏽 Medium

Problem Statement

Given an integer n, return the nth 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
  • 0 <= n <= 30

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.

console.log(fibonacci(5));  // Output: 5
console.log(fibonacci(10));  // Output: 55
function fibonacci(n) {
// YOUR SOLUTION HERE
}

Memory: 0

CPU: 0