aoc/aoc2018/day03.go

10 lines
183 B
Go
Raw Permalink Normal View History

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