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

@@ -4,15 +4,15 @@ import (
"log"
"time"
"sunshine.industries/aoc2023/day23"
"sunshine.industries/aoc2023/day24"
)
func main() {
startTime := time.Now()
log.Print("> starting run:")
result := day23.Run()
log.Printf("\n\nday23 result: %d\n****\n", result)
result := day24.Run()
log.Printf("\n\nday24 result: %d\n****\n", result)
endTime := time.Now()
diff := endTime.Sub(startTime)
log.Printf("execution took %s", diff.String())