Advent-of-Code-2023/day24/neverTellMeTheOdds.go
2023-12-24 08:15:18 +00:00

13 lines
201 B
Go

package day24
import (
"fmt"
)
func Run() int {
fmt.Println("hello day 24, i'm getting tired")
filenae := "day24/input"
hails := ReadHailFile(filenae)
return CheckPairwiseIntersections(hails)
}