aoc/aoc2015/day15.go

10 lines
183 B
Go
Raw Permalink Normal View History

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