-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
47 lines (36 loc) · 786 Bytes
/
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
package main
import (
"strings"
"github.com/danvolchek/AdventOfCode/lib"
)
type present struct {
l, w, h int
}
func parse(line string) present {
// line format: "2x3x4"
parts := strings.Split(line, "x")
return present{
l: lib.Atoi(parts[0]),
w: lib.Atoi(parts[1]),
h: lib.Atoi(parts[2]),
}
}
func solve(presents []present) int {
totalPaper := 0
paperForPresent := func(l, w, h int) int {
return 2*l*w + 2*w*h + 2*h*l + lib.Min(l*w, l*h, h*w)
}
for _, present := range presents {
totalPaper += paperForPresent(present.l, present.w, present.h)
}
return totalPaper
}
func main() {
solver := lib.Solver[[]present, int]{
ParseF: lib.ParseLine(parse),
SolveF: solve,
}
solver.Expect("2x3x4", 58)
solver.Expect("1x1x10", 43)
solver.Verify(1586300)
}