Write a program that outputs the string representation of numbers from 1 to n.
But for multiples of three it should output “Fizz” instead of the number and for the multiples of five output “Buzz”. For numbers which are multiples of both three and five output “FizzBuzz”.
Example:
n = 15, Return: [ "1", "2", "Fizz", "4", "Buzz", "Fizz", "7", "8", "Fizz", "Buzz", "11", "Fizz", "13", "14", "FizzBuzz" ]
Python Solution :
class Solution:
def fizzBuzz(self, n: int) -> List[str]:
liststr = []
if n == 0:
return 0
for i in range(1,n+1):
if i % 15 == 0:
liststr.append("FizzBuzz")
elif i % 3 == 0:
liststr.append('Fizz')
elif i % 5 == 0:
liststr.append('Buzz')
else:
liststr.append(str(i))
return liststr
Time Complexity : O(n)
Space Complexity : O(n)
No comments:
Post a Comment