-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday02-2.go
57 lines (51 loc) · 1.08 KB
/
day02-2.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
package main
import (
"fmt"
"log"
"strconv"
"strings"
)
func day2part2(filename string) (string, error) {
var total int
if err := forLine(filename, func(line string) {
matches := day2GameIDRe.FindStringSubmatch(line)
minCubes := day2MinCubesForGame(matches[2])
total += day2GamePower(minCubes)
}); err != nil {
return "", err
}
return fmt.Sprint(total), nil
}
func day2GamePower(cubes day2CubeSet) int {
res := 1
for _, v := range cubes {
res *= v
}
return res
}
func day2MinCubesForGame(game string) day2CubeSet {
var minCubes day2CubeSet
// A handful of cubes.
for _, pick := range strings.Split(game, "; ") {
// One color of cubes within a handful.
for _, one := range strings.Split(pick, ", ") {
oneMatches := day2NumColorRe.FindStringSubmatch(one)
num, _ := strconv.Atoi(oneMatches[1])
var idx int
switch oneMatches[2] {
case "red":
idx = 0
case "green":
idx = 1
case "blue":
idx = 2
default:
log.Fatalf("unknown color: %s", oneMatches[2])
}
if minCubes[idx] < num {
minCubes[idx] = num
}
}
}
return minCubes
}