zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    Mysql InnoDB引擎下 事务的隔离级别
    Spring 两大核心 IOC 和 AOP
    java 冒泡排序
    MyBatis 传入List集合作为条件查询数据
    fastfusion运行
    数据集
    工具学习
    三维重建
    Scrivener破解
    博客园设置
  • 原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/6051348.html
Copyright © 2011-2022 走看看