half of day 3

This commit is contained in:
ZennDev1337 2023-11-15 18:34:41 +01:00
parent be09a5df2c
commit 9d18226366
2 changed files with 47 additions and 3 deletions

View file

@ -4,7 +4,7 @@ import "testing"
func TestPart1(t *testing.T) {
const expected = 198
result := Part1()
result := Part1(GetData("./test-data"))
if result != expected {
t.Fatalf("Expected: %d Result: %d", expected, result)
}