chore: initial commit

This commit is contained in:
Stevan Freeborn
2025-11-28 07:19:14 -06:00
commit b0bfab942c
6 changed files with 101 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
package main
func SolvePartOne(filePath string) int {
return 0
}
+17
View File
@@ -0,0 +1,17 @@
package main_test
import (
"testing"
solution "github.com/StevanFreeborn/advent-of-code-2025/cmd/01"
)
func TestSolvePartOneWithExampleInput(t *testing.T) {
expected := -1
result := solution.SolvePartOne("EXAMPLE.txt")
if result != expected {
t.Errorf("SolvePartOne() = %d; want %d", result, expected)
}
}