feat: wip on day 10 part 1 solution

This commit is contained in:
Stevan Freeborn
2025-12-20 04:23:01 -06:00
parent cef0829847
commit 18c1e65b16
2 changed files with 131 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/10"
)
func TestSolvePartOne(t *testing.T) {
expected := -1
result := solution.SolvePartOne("EXAMPLE.txt")
if result != expected {
t.Errorf("got %d but wanted %d", result, expected)
}
}