Skip to content

Commit 551c460

Browse files
committed
add go
1 parent 5b4233b commit 551c460

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

go/0904-fruit-into-baskets.go

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
package main
2+
3+
func main() {
4+
5+
}
6+
7+
func totalFruit(fruits []int) int {
8+
count := map[int]int{}
9+
left, total, res := 0, 0, 0
10+
11+
for _, fruit := range fruits {
12+
count[fruit]++
13+
total++
14+
15+
for len(count) > 2 {
16+
f := fruits[left]
17+
count[f]--
18+
total--
19+
left++
20+
if count[f] == 0 {
21+
delete(count, f)
22+
}
23+
}
24+
res = max(res, total)
25+
}
26+
return res
27+
}
28+
29+
func max(a, b int) int {
30+
if a > b {
31+
return a
32+
}
33+
return b
34+
}

0 commit comments

Comments
 (0)