mirror of
https://github.com/Crocmagnon/advent-of-code.git
synced 2024-11-15 03:04:01 +01:00
11 lines
135 B
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)
|