mirror of
https://github.com/Crocmagnon/advent-of-code.git
synced 2024-11-14 10:43:58 +01:00
10 lines
135 B
Go
10 lines
135 B
Go
package _023
|
|
|
|
import "io"
|
|
|
|
type testCase struct {
|
|
filename string
|
|
want int
|
|
}
|
|
|
|
type solveFunc func(reader io.Reader) (int, error)
|