Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Write Fibonacci Series Code

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

Your question is Write Fibonacci Series Code. 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

For a Virtusa engineering utility, generate the first n numbers in the Fibonacci series. The series begins with 0, 1, and each subsequent number is the sum of the previous two numbers.

Return the values in order as a Python list. For n = 0, return an empty list.

Formal Specification

Implement fibonacci_series(n):

  • Input: An integer n, representing the number of Fibonacci values to generate.
  • Output: A list containing the first n Fibonacci numbers.
  • The sequence uses zero-based indexing: F(0) = 0 and F(1) = 1.

Constraints

  • 0 <= n <= 10^4
  • Return exactly n Fibonacci values
  • Use F(0) = 0 and F(1) = 1
  • Python integers may grow beyond standard machine integer limits

Function Signature

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