mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-07 14:10:49 +00:00
21 lines
369 B
Go
21 lines
369 B
Go
package dayeight
|
|
|
|
import (
|
|
"github.com/onyx-and-iris/aoc2024/day-08/internal/one"
|
|
"github.com/onyx-and-iris/aoc2024/day-08/internal/two"
|
|
)
|
|
|
|
func Solve(buf []byte) (int, int, error) {
|
|
answerOne, err := one.Solve(buf)
|
|
if err != nil {
|
|
return 0, 0, err
|
|
}
|
|
|
|
answerTwo, err := two.Solve(buf)
|
|
if err != nil {
|
|
return 0, 0, err
|
|
}
|
|
|
|
return answerOne, answerTwo, nil
|
|
}
|