advent-of-code/2023/types.go

11 lines
135 B
Go

package _023
import "io"
type testCase struct {
filename string
want int
}
type solveFunc func(reader io.Reader) (int, error)