Skip to content

Files

Latest commit

4e11f40 · Aug 7, 2020

History

History
This branch is 1120 commits behind halfrost/LeetCode-Go:master.

0412.Fizz-Buzz

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Aug 7, 2020
Aug 7, 2020
Aug 7, 2020

题目

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

题目大意

3的倍数输出 "Fizz",5的倍数输出 "Buzz",15的倍数输出 "FizzBuzz",其他时候都输出原本的数字。

解题思路

按照题意做即可。