Files
2020/main.go
Parnic 0397fa2821 Day 23 in Go, just 'cause
Also resaved 23input.txt in code page 1252 to remove the UTF-8 BOM
2020-12-23 22:41:03 -06:00

9 lines
81 B
Go

package main
import "aoc2020/days"
func main() {
days.Day16()
days.Day23()
}