Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Nth Fibonacci Number

EasyPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Nth Fibonacci Number. Start with the requirements on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

Given a non-negative integer n, return the nth Fibonacci number. The Fibonacci sequence is defined as F(0) = 0, F(1) = 1, and F(n) = F(n - 1) + F(n - 2) for n >= 2. The function should return a single integer.

Constraints

  • 0 <= n <= 30
  • n is an integer
  • Return the exact Fibonacci value

Function Signature

def fibonacci(n):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output