aoc/aoc2016/day18.go

10 lines
183 B
Go
Raw Permalink Normal View History

2024-07-24 14:29:59 +00:00
package aoc2016
import "fmt"
func day18() {
2024-07-24 18:03:39 +00:00
//in := utility.GetInput("input/2016/test")
//in := utility.GetInput("input/2016/18")
2024-07-24 14:29:59 +00:00
fmt.Println("2016-18 is not implemented yet")
}