Leetcode - 412. Fizz Buzz
Posted 码上哈希
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 “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" ]
public class Solution { public List<String> fizzBuzz(int n) { List<String> ret = new ArrayList<String>(); for (int i=1; i<=n; i++) { ret.add(isFizzOrBuzz(i)); } return ret; } public String isFizzOrBuzz(int i) { if (i % 3 == 0) { if (i % 5 == 0) { return "FizzBuzz"; } else { return "Fizz"; } } else if (i % 5 == 0) { return "Buzz"; } else { return ""+i; } } }
以上是关于Leetcode - 412. Fizz Buzz的主要内容,如果未能解决你的问题,请参考以下文章