jzoffer

package
v0.0.0-...-6c0d317 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 15, 2022 License: Apache-2.0 Imports: 1 Imported by: 0

Documentation

Overview

* @lc app=leetcode.cn id=412 lang=golang * * [412] Fizz Buzz * * https://leetcode.cn/problems/fizz-buzz/description/ * * algorithms * Easy (71.24%) * Likes: 198 * Dislikes: 0 * Total Accepted: 135K * Total Submissions: 190.5K * Testcase Example: '3' * * 给你一个整数 n ,找出从 1 到 n 各个整数的 Fizz Buzz 表示,并用字符串数组 answer(下标从 1 * 开始)返回结果,其中: * * * answer[i] == "FizzBuzz" 如果 i 同时是 3 和 5 的倍数。 * answer[i] == "Fizz" 如果 i 是 3 的倍数。 * answer[i] == "Buzz" 如果 i 是 5 的倍数。 * answer[i] == i (以字符串形式)如果上述条件全不满足。 * * * * * 示例 1: * * * 输入:n = 3 * 输出:["1","2","Fizz"] * * * 示例 2: * * * 输入:n = 5 * 输出:["1","2","Fizz","4","Buzz"] * * * 示例 3: * * * 输入:n = 15 * * 输出:["1","2","Fizz","4","Buzz","Fizz","7","8","Fizz","Buzz","11","Fizz","13","14","FizzBuzz"] * * * * 提示: * * * 1 <= n <= 10^4 * *

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL