-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
74 lines (56 loc) · 1.08 KB
/
main.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package main
import (
"fmt"
"io"
"os"
"path"
"strconv"
"strings"
)
func input() *os.File {
input, err := os.Open(path.Join("2021", "6", "input.txt"))
if err != nil {
panic(err)
}
return input
}
const days = 80
func parse(r io.Reader) map[int]int {
line, err := io.ReadAll(r)
if err != nil {
panic(err)
}
rawFish := strings.Split(strings.TrimSpace(string(line)), ",")
fish := make(map[int]int)
for _, f := range rawFish {
timer, err := strconv.Atoi(f)
if err != nil {
panic(err)
}
fish[timer] += 1
}
return fish
}
func solve(r io.Reader) {
fish := parse(r)
for i := 0; i < days; i++ {
fishToCreate := fish[0]
// each fish timer ticks down one day
for timer := 0; timer < 8; timer++ {
fish[timer] = fish[timer+1]
}
// each new fish starts out with timer 8
fish[8] = fishToCreate
// each fish that created a fish resets its timer to 6
fish[6] += fishToCreate
}
totalFish := 0
for _, numFish := range fish {
totalFish += numFish
}
fmt.Println(totalFish)
}
func main() {
solve(strings.NewReader("3,4,3,1,2"))
solve(input())
}