mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-08 13:50:48 +00:00
16 lines
196 B
Go
16 lines
196 B
Go
|
package daytwentytwo
|
||
|
|
||
|
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)
|
||
|
}
|