← All problems to save submissions
FizzBuzzeasy

Given an integer n, return an array answer (1-indexed) where:

  • answer[i] = "FizzBuzz" if i is divisible by 3 and 5
  • answer[i] = "Fizz" if i is divisible by 3
  • answer[i] = "Buzz" if i is divisible by 5
  • answer[i] = i (as a string) otherwise

Example

Input:  n = 5
Output: ["1","2","Fizz","4","Buzz"]
Run your code to see test results.