Generate the first N numbers of the Fibonacci sequence where each number is the sum of the two preceding ones. The sequence starts with 0 and 1.

Examples:

Input: n = 5 Output: [0, 1, 1, 2, 3] Explanation: First 5 numbers: 0, 1, (0+1)=1, (1+1)=2, (1+2)=3 Input: n = 8 Output: [0, 1, 1, 2, 3, 5, 8, 13] Explanation: Continuing the sequence: (2+3)=5, (3+5)=8, (5+8)=13 Input: n = 1 Output: [0] Explanation: Only the first number is 0
Apex Code Editor

Welcome to Lightning Challenge!

Create an Account

Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.

Create account

How It Works

  • • Write your solution in the code editor
  • • Connect your Salesforce org to test
  • • Submit to check if your solution passes
  • • Use hints if you get stuck

Contest Alert

🏆 #CodeEveryDay Jan 2026

Contest runs January 1 - 31. Complete challenges to climb the leaderboard!

Points are calculated for challenges completed during the contest period.