feat: wip on day 10 part 2

This commit is contained in:
Stevan Freeborn
2025-12-24 18:13:07 -06:00
parent a2024af1b4
commit 838eb99ed9
4 changed files with 349 additions and 28 deletions
+11 -1
View File
@@ -27,7 +27,7 @@ func TestSolvePartOneWithInput(t *testing.T) {
}
func TestSolvePartTwoWithExampleInput(t *testing.T) {
expected := 7
expected := 33
result := solution.SolvePartTwo("EXAMPLE.txt")
@@ -35,3 +35,13 @@ func TestSolvePartTwoWithExampleInput(t *testing.T) {
t.Errorf("got %d but wanted %d", result, expected)
}
}
func TestSolvePartTwoWithInput(t *testing.T) {
expected := -1
result := solution.SolvePartTwo("INPUT.txt")
if result != expected {
t.Errorf("got %d but wanted %d", result, expected)
}
}