mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-07 14:10:49 +00:00
16 lines
191 B
Go
16 lines
191 B
Go
package daynine
|
|
|
|
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)
|
|
}
|