-
Notifications
You must be signed in to change notification settings - Fork 3
/
day05_test.go
203 lines (185 loc) · 4.01 KB
/
day05_test.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
// Package main provides ...
package main
import (
"reflect"
"testing"
)
func TestDigitFromRight(t *testing.T) {
tests := []struct {
num int
i int
expected int
}{
{12345, 0, 5},
{12345, 1, 4},
{12345, 2, 3},
{12345, 3, 2},
{12345, 4, 1},
{12345, 5, 0},
{498, 0, 8},
{498, 1, 9},
{498, 2, 4},
{498, 3, 0},
{498, 4, 0},
{498, 5, 0},
}
for _, test := range tests {
t.Run("whatever", func(t *testing.T) {
got := DigitFromRight(test.num, test.i)
want := test.expected
if got != want {
t.Errorf("got %v want %v", got, want)
}
})
}
}
func Test81(t *testing.T) {
program := []int{3, 9, 8, 9, 10, 9, 4, 9, 99, -1, 8}
tests := []struct {
inputs []int
want []int
}{
{[]int{7}, []int{0}},
{[]int{8}, []int{1}},
{[]int{9}, []int{0}},
}
for _, test := range tests {
t.Run("whatever", func(t *testing.T) {
got := Solve(program, test.inputs)
want := test.want
if !reflect.DeepEqual(got, want) {
t.Errorf("got %v want %v", got, want)
}
})
}
}
func Test82(t *testing.T) {
program := []int{3, 9, 7, 9, 10, 9, 4, 9, 99, -1, 8}
tests := []struct {
inputs []int
want []int
}{
{[]int{7}, []int{1}},
{[]int{8}, []int{0}},
{[]int{9}, []int{0}},
}
for _, test := range tests {
t.Run("whatever", func(t *testing.T) {
got := Solve(program, test.inputs)
want := test.want
if !reflect.DeepEqual(got, want) {
t.Errorf("got %v want %v", got, want)
}
})
}
}
func Test83(t *testing.T) {
program := []int{3, 3, 1108, -1, 8, 3, 4, 3, 99}
tests := []struct {
inputs []int
want []int
}{
{[]int{7}, []int{0}},
{[]int{8}, []int{1}},
{[]int{9}, []int{0}},
}
for _, test := range tests {
t.Run("whatever", func(t *testing.T) {
got := Solve(program, test.inputs)
want := test.want
if !reflect.DeepEqual(got, want) {
t.Errorf("got %v want %v", got, want)
}
})
}
}
func Test84(t *testing.T) {
program := []int{3, 3, 1107, -1, 8, 3, 4, 3, 99}
tests := []struct {
inputs []int
want []int
}{
{[]int{7}, []int{1}},
{[]int{8}, []int{0}},
{[]int{9}, []int{0}},
}
for _, test := range tests {
t.Run("whatever", func(t *testing.T) {
got := Solve(program, test.inputs)
want := test.want
if !reflect.DeepEqual(got, want) {
t.Errorf("got %v want %v", got, want)
}
})
}
}
func TestJump1(t *testing.T) {
program := []int{3, 12, 6, 12, 15, 1, 13, 14, 13, 4, 13, 99, -1, 0, 1, 9}
tests := []struct {
inputs []int
want []int
}{
{[]int{0}, []int{0}},
{[]int{10}, []int{1}},
}
for _, test := range tests {
t.Run("whatever", func(t *testing.T) {
got := Solve(program, test.inputs)
want := test.want
if !reflect.DeepEqual(got, want) {
t.Errorf("got %v want %v", got, want)
}
})
}
}
func TestJump2(t *testing.T) {
program := []int{3, 3, 1105, -1, 9, 1101, 0, 0, 12, 4, 12, 99, 1}
tests := []struct {
inputs []int
want []int
}{
{[]int{0}, []int{0}},
{[]int{10}, []int{1}},
}
for _, test := range tests {
t.Run("whatever", func(t *testing.T) {
got := Solve(program, test.inputs)
want := test.want
if !reflect.DeepEqual(got, want) {
t.Errorf("got %v want %v", got, want)
}
})
}
}
func TestLonger(t *testing.T) {
program := []int{3, 21, 1008, 21, 8, 20, 1005, 20, 22, 107, 8, 21, 20, 1006, 20, 31, 1106, 0, 36, 98, 0, 0, 1002, 21, 125, 20, 4, 20, 1105, 1, 46, 104, 999, 1105, 1, 46, 1101, 1000, 1, 20, 4, 20, 1105, 1, 46, 98, 99}
tests := []struct {
inputs []int
want []int
}{
{[]int{2}, []int{999}},
{[]int{8}, []int{1000}},
{[]int{12}, []int{1001}},
}
for _, test := range tests {
t.Run("whatever", func(t *testing.T) {
got := Solve(program, test.inputs)
want := test.want
if !reflect.DeepEqual(got, want) {
t.Errorf("got %v want %v", got, want)
}
})
}
}
func BenchmarkSolvePart1(b *testing.B) {
program := Parse("../input.txt")
for i := 0; i < b.N; i++ {
Solve(program, []int{1})
}
}
func BenchmarkSolvePart2(b *testing.B) {
program := Parse("../input.txt")
for i := 0; i < b.N; i++ {
Solve(program, []int{5})
}
}