aoc2024/day-15/solve_internal_test.go
2024-12-16 11:56:53 +00:00

16 lines
194 B
Go

package dayfifteen
import (
_ "embed"
"os"
"testing"
)
//go:embed testdata/input.txt
var data []byte
func BenchmarkSolve(b *testing.B) {
os.Stdout, _ = os.Open(os.DevNull)
Solve(data)
}