-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday02-1.go
69 lines (61 loc) · 1.49 KB
/
day02-1.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
package main
import (
"fmt"
"log"
"regexp"
"strconv"
"strings"
)
// The order is red (0), green (1), blue (2)
type day2CubeSet [3]int
var (
// ID of the game.
day2GameIDRe = regexp.MustCompile(`^Game (\d+): (.*)$`)
// One color of cube.
day2NumColorRe = regexp.MustCompile(`(\d+) (\w+)`)
)
func day2part1(filename string) (string, error) {
var total int
compare := day2CubeSet{12, 13, 14}
if err := forLine(filename, func(line string) {
matches := day2GameIDRe.FindStringSubmatch(line)
gameID, _ := strconv.Atoi(matches[1])
var maxCubes day2CubeSet
// A handful of cubes.
for _, pick := range strings.Split(matches[2], "; ") {
// 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 maxCubes[idx] < num {
maxCubes[idx] = num
}
}
}
if day2part1CanPlay(maxCubes, compare) {
total += gameID
}
}); err != nil {
return "", err
}
return fmt.Sprint(total), nil
}
// day2part1CanPlay returns true if the game compare can be played with the set maxCubes.
func day2part1CanPlay(maxCubes day2CubeSet, compare day2CubeSet) bool {
res := true
for i := 0; i <= 2; i++ {
res = res && (maxCubes[i] <= compare[i])
}
return res
}