-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.go
102 lines (84 loc) · 1.67 KB
/
code.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package main
import (
"advent-of-code/helper"
"fmt"
"path"
"runtime"
"strings"
"time"
)
func main() {
_, f, _, _ := runtime.Caller(0)
cwd := path.Join(path.Dir(f))
input := helper.ReadInput(cwd, helper.NewLine)
iValues := input.Strings()
// Execute
start := time.Now()
result01 := part01(iValues)
result02 := part02(iValues)
executionTime := helper.ExecutionTime(time.Since(start))
fmt.Printf("Solution Part 1: %v\n", result01)
fmt.Printf("Solution Part 2: %v\n", result02)
fmt.Printf("Execution time: %s\n", executionTime)
helper.SaveBenchmarkTime(executionTime, cwd)
// Testing
helper.TestResults(
[]helper.TestingValue{
helper.TestingValue{Result: result01, Expect: 2081},
helper.TestingValue{Result: result02, Expect: 2341},
},
)
}
// Task code
const (
North = "^"
East = ">"
South = "v"
West = "<"
)
func part01(input []string) int {
commands := strings.Split(input[0], "")
houses := map[string]bool{"0-0": true}
coords := []int{0, 0}
for _, c := range commands {
y, x := coords[0], coords[1]
switch c {
case North:
y--
case East:
x++
case South:
y++
case West:
x--
}
coords = []int{y, x}
houses[fmt.Sprintf("%d-%d", y, x)] = true
}
return len(houses)
}
func part02(input []string) int {
commands := strings.Split(input[0], "")
houses := map[string]bool{"0-0": true}
coords := [][2]int{{0, 0}, {0, 0}}
for i, c := range commands {
sr := 0
if i%2 == 0 {
sr = 1
}
y, x := coords[sr][0], coords[sr][1]
switch c {
case North:
y--
case East:
x++
case South:
y++
case West:
x--
}
coords[sr] = [2]int{y, x}
houses[fmt.Sprintf("%d-%d", y, x)] = true
}
return len(houses)
}