aoc2024/day-05/solve_internal_test.go

16 lines
191 B
Go
Raw Permalink Normal View History

2024-12-05 18:24:22 +00:00
package dayfive
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)
}