aoc2024/.scaffold/aoc/{{ .Project }}/internal/two/solve_internal_test.go
onyx-and-iris 88f082080d remove scaffold.sh
add scaffold aoc template
2024-12-27 22:13:33 +00:00

16 lines
187 B
Go

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