day24, example

This commit is contained in:
efim
2023-12-24 07:42:04 +00:00
parent 2f6120fbd8
commit b6a56554af
6 changed files with 267 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
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)
}