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"
]

Solution in python:

class Solution:
    def fizzBuzz(self, n: int) -> List[str]:
        result = []
        for i in range(1, n+1):
            item = str(i)
            if i % 15 == 0:
                item = "FizzBuzz"
            elif i % 3 == 0:
                item = "Fizz"
            elif i % 5 == 0:
                item = "Buzz"
            result.append(item)
        return result
最后修改日期: 2021年1月29日

留言

撰写回覆或留言

发布留言必须填写的电子邮件地址不会公开。