-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfizz_buzz.go
54 lines (50 loc) · 1.08 KB
/
fizz_buzz.go
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package main
import "fmt"
func fizzBuzz(n int) []string {
var answer []string
for index := 1; index <= n; index++ {
if index%3 == 0 && index%5 == 0 {
answer = append(answer, "FizzBuzz")
} else if index%3 == 0 {
answer = append(answer, "Fizz")
} else if index%5 == 0 {
answer = append(answer, "Buzz")
} else {
str := fmt.Sprintf("%d", index)
answer = append(answer, str)
}
}
return answer
}
func fizzBuzz2(n int) []string {
answer := make([]string, 0, n)
for index := 1; index <= n; index++ {
switch index % 15 {
case 0:
answer = append(answer, "FizzBuzz")
case 3, 6, 9, 12:
answer = append(answer, "Fizz")
case 5, 10:
answer = append(answer, "Buzz")
default:
answer = append(answer, fmt.Sprintf("%d", index))
}
}
return answer
}
func fizzBuzz3(n int) []string {
answer := make([]string, n)
for i := 1; i <= n; i++ {
switch {
case i%3 == 0 && i%5 == 0:
answer[i-1] = "FizzBuzz"
case i%3 == 0:
answer[i-1] = "Fizz"
case i%5 == 0:
answer[i-1] = "Buzz"
default:
answer[i-1] = fmt.Sprintf("%d", i)
}
}
return answer
}