Day 2 initial solution

There's room to optimize part 2, but I wanted to commit my original brute-force solution first.
This commit is contained in:
2022-06-07 09:26:21 -05:00
parent d2fbe85a71
commit 93c9bc7d6f
5 changed files with 130 additions and 0 deletions

View File

@ -26,6 +26,7 @@ const (
var dayMap = map[int]day{
1: &days.Day01{},
2: &days.Day02{},
}
func main() {