13 lines
201 B
Go
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)
|
|
}
|