Solution for Day 12

This commit is contained in:
2021-12-12 23:26:23 +00:00
parent b0c161669e
commit be32018be9
9 changed files with 412 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ import (
"unsupervised.ca/aoc2021/six"
"unsupervised.ca/aoc2021/ten"
"unsupervised.ca/aoc2021/three"
"unsupervised.ca/aoc2021/twelve"
"unsupervised.ca/aoc2021/two"
)
@@ -55,6 +56,8 @@ func main() {
day = ten.Init("ten/input.txt")
case "eleven":
day = eleven.Init("eleven/input.txt")
case "twelve":
day = twelve.Init("twelve/input.txt")
default:
fmt.Printf("%q does not have a solution.\n", flagParts[1])
help()