feat: wip on day 12 part 1

This commit is contained in:
Stevan Freeborn
2025-12-23 08:18:01 -06:00
parent f693c4b71f
commit f99af72e2e
4 changed files with 302 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package main_test
import (
"testing"
solution "github.com/StevanFreeborn/advent-of-code-2025/cmd/12"
)
func TestSolvePartOne(t *testing.T) {
expected := -1
result := solution.SolvePartOne("EXAMPLE.txt")
if result != expected {
t.Errorf("got %d but wanted %d", result, expected)
}
}