码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode: Fizz Buzz

时间:2016-12-01 14:23:47      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:with   bsp   style   blog   return   res   rom   div   pre   

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 1:

 1 public class Solution {
 2     public List<String> fizzBuzz(int n) {
 3         List<String> res = new ArrayList<String>();
 4         for (int i=1; i<=n; i++) {
 5             if (i%3==0 && i%5==0) res.add("FizzBuzz");
 6             else if (i % 3 == 0) res.add("Fizz");
 7             else if (i % 5 == 0) res.add("Buzz");
 8             else res.add(Integer.toString(i));
 9         }
10         return res;
11     }
12 }

Solution with out using %

 1 public class Solution {
 2     public List<String> fizzBuzz(int n) {
 3         List<String> ret = new ArrayList<String>(n);
 4         for(int i=1,fizz=0,buzz=0;i<=n ;i++){
 5             fizz++;
 6             buzz++;
 7             if(fizz==3 && buzz==5){
 8                 ret.add("FizzBuzz");
 9                 fizz=0;
10                 buzz=0;
11             }else if(fizz==3){
12                 ret.add("Fizz");
13                 fizz=0;
14             }else if(buzz==5){
15                 ret.add("Buzz");
16                 buzz=0;
17             }else{
18                 ret.add(String.valueOf(i));
19             }
20         } 
21         return ret;
22     }
23 }

 

Leetcode: Fizz Buzz

标签:with   bsp   style   blog   return   res   rom   div   pre   

原文地址:http://www.cnblogs.com/EdwardLiu/p/6121453.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!