[LeetCode]--412. Fizz Buzz

简介: 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

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

没想太多,简单粗暴解决,AC了。

public List<String> fizzBuzz(int n) {
        List<String> list = new ArrayList<String>();
        for (int i = 1; i <= n; i++) {
            if (i % 15 == 0) {
                list.add("FizzBuzz");
                continue;
            } else {
                if (i % 3 == 0) {
                    list.add("Fizz");
                    continue;
                }
                if (i % 5 == 0) {
                    list.add("Buzz");
                    continue;
                }
            }
            list.add(Integer.toString(i));
        }
        return list;
    }
目录
相关文章
【Leetcode -412.Fizz Buzz -414.第三大的数】
【Leetcode -412.Fizz Buzz -414.第三大的数】
49 0
LeetCode 412. Fizz Buzz
写一个程序,输出从 1 到 n 数字的字符串表示。
161 0
LeetCode 412. Fizz Buzz
LeetCode 412. Fizz Buzz
Leetcode-Easy 412. Fizz Buzz
Leetcode-Easy 412. Fizz Buzz
84 0
Leetcode-Easy 412. Fizz Buzz
|
算法 Java C#
【算法千题案例】每日LeetCode打卡——74.Fizz Buzz
📢前言 🌲原题样例:Fizz Buzz 🌻C#方法:模拟 + 字符串拼接 🌻Java 方法:模拟 + 字符串拼接 💬总结
【算法千题案例】每日LeetCode打卡——74.Fizz Buzz
|
算法 Python
<LeetCode天梯>Day043 Fizz Buzz(按部就班) | 初级算法 | Python
<LeetCode天梯>Day043 Fizz Buzz(按部就班) | 初级算法 | Python
<LeetCode天梯>Day043 Fizz Buzz(按部就班) | 初级算法 | Python
LeetCode之Fizz Buzz
LeetCode之Fizz Buzz
117 0
|
算法 文件存储
[leetcode/lintcode 题解] 算法面试真题详解:Fizz Buzz 问题
[leetcode/lintcode 题解] 算法面试真题详解:Fizz Buzz 问题
[leetcode/lintcode 题解] 算法面试真题详解:Fizz Buzz 问题
|
2月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
3月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
118 2