Advent-of-Code-2023/day24/neverTellMeTheOdds.go

13 lines
203 B
Go

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