-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFizzBuzz.java
More file actions
31 lines (28 loc) · 810 Bytes
/
FizzBuzz.java
File metadata and controls
31 lines (28 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import java.util.LinkedList;
import java.util.List;
/**
* Leetcode problem #412, Fizz Buzz
* https://leetcode.com/problems/fizz-buzz/description/
*/
public class FizzBuzz {
public static void main(String[] args) {
int n = 15;
List<String> list = fizzBuzz(n);
System.out.println(list);
}
public static List<String> fizzBuzz(int n) {
LinkedList<String> list = new LinkedList<>();
for (int i = 1; i <= n; i++) {
if (i % 3 == 0 && i % 5 == 0) {
list.add("FizzBuzz");
} else if (i % 3 == 0) {
list.add("Fizz");
} else if (i % 5 == 0) {
list.add("Buzz");
} else {
list.add(String.valueOf(i));
}
}
return list;
}
}