aoc2024/day-20/solve_internal_test.go
2024-12-20 20:48:13 +00:00

16 lines
193 B
Go

package daytwenty
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)
}