Your question is Print Fibonacci Series. 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.
Druva QA tooling needs a predictable Fibonacci sequence for validating backup scheduling and health-check calculations. Given a non-negative integer n, return the first n Fibonacci numbers, starting with 0, 1.
Each number after the first two is the sum of the previous two numbers. Return an empty list when n is 0.
Implement fibonacci(n), where:
n representing the requested sequence length.n integers containing the Fibonacci sequence from index 0 through index n - 1.def fibonacci(n):