aoc/aoc2020/day18.go

10 lines
183 B
Go
Raw Permalink Normal View History

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