aoc/aoc2016/day11.go

10 lines
183 B
Go
Raw Permalink Normal View History

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