day14, example

This commit is contained in:
efim
2023-12-14 11:30:03 +00:00
parent 3128ab673f
commit fde1415f34
3 changed files with 159 additions and 3 deletions

View File

@@ -3,12 +3,12 @@ package main
import (
"log"
"sunshine.industries/aoc2023/day13"
"sunshine.industries/aoc2023/day14"
)
func main() {
log.Print("> starting run:")
result := day13.Run()
log.Printf("day13 result: %d\n****\n", result)
result := day14.Run()
log.Printf("day14 result: %d\n****\n", result)
}