![JAR search and dependency download from the Maven repository](/logo.png)
g0401_0500.s0412_fizz_buzz.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0401_0500.s0412_fizz_buzz;
// #Easy #Top_Interview_Questions #String #Math #Simulation
// #2022_03_18_Time_3_ms_(32.80%)_Space_49_MB_(8.43%)
import java.util.ArrayList;
import java.util.List;
public class Solution {
public List fizzBuzz(int n) {
List result = new ArrayList<>();
for (int i = 1; i <= n; i++) {
if (i % 3 == 0 && i % 5 == 0) {
result.add("FizzBuzz");
} else if (i % 3 == 0) {
result.add("Fizz");
} else if (i % 5 == 0) {
result.add("Buzz");
} else {
result.add(Integer.toString(i));
}
}
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy