LeetCode 412. Fizz Buzz

Zoka
·
·
IPFS
·
class Solution {
    public List<String> fizzBuzz(int n) {
        ArrayList<String> al = new ArrayList<>(n);
        al.clear();
        for(int i=1; i<=n; i++){
            boolean divisible3 = i%3==0;
            boolean divisible5 = i%5==0;
            String str="";
            if(divisible3) {
                str+="Fizz";
            } 
            if(divisible5) {
                str+="Buzz";
            } 
            if(str.isEmpty()) {
                str += String.valueOf(i);
            }
            al.add(str);
        }
        return al;
    }
}


CC BY-NC-ND 2.0 授权

喜欢我的作品吗?别忘了给予支持与赞赏,让我知道在创作的路上有你陪伴,一起延续这份热忱!