• LeetCode 412. Fizz Buzz


    原题链接在这里:https://leetcode.com/problems/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"
    ]

    题解:

    从1到n, 当前数能否被15, 5, 3整除,添加对应String. 均不能整除添加当前数.

    Time Complexity: O(n). Space: O(1) regardless res.

    AC Java:

     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%5 == 0 && i%3 == 0){
     6                 res.add("FizzBuzz");
     7             }else if(i%5 == 0){
     8                 res.add("Buzz");
     9             }else if(i%3 == 0){
    10                 res.add("Fizz");
    11             }else{
    12                 res.add(String.valueOf(i));
    13             }
    14         }
    15         return res;
    16     }
    17 }
  • 相关阅读:
    离散数学--第十章 群,环,域
    离散数学--十一章 格与布尔代数
    matplotlib 基础|笔记
    CF Round #632 div2
    Codeforces Round#630 div2
    PVZ 2--攻略合集?
    【POJ
    【POJ
    【Aizu
    【Aizu
  • 原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/6051348.html
Copyright © 2020-2023  润新知