38 lines
451 B
Go
38 lines
451 B
Go
package main
|
|
|
|
import "testing"
|
|
|
|
var input = []string{
|
|
"abc",
|
|
"",
|
|
"a",
|
|
"b",
|
|
"c",
|
|
"",
|
|
"ab",
|
|
"ac",
|
|
"",
|
|
"a",
|
|
"a",
|
|
"a",
|
|
"a",
|
|
"",
|
|
"b",
|
|
}
|
|
|
|
func TestPartOne(t *testing.T) {
|
|
expected := 11
|
|
got := PartOne(input)
|
|
if got != expected {
|
|
t.Errorf("PartOne() = %d, want %d", got, expected)
|
|
}
|
|
}
|
|
|
|
func TestPartTwo(t *testing.T) {
|
|
expected := 6
|
|
got := PartTwo(input)
|
|
if got != expected {
|
|
t.Errorf("PartTwo() = %d, want %d", got, expected)
|
|
}
|
|
}
|