Add vent mapping solution

This commit is contained in:
2021-12-05 17:32:17 +00:00
parent ec04a04547
commit 4f1fddf0eb
7 changed files with 682 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ import (
"os"
"strings"
"unsupervised.ca/aoc2021/five"
"unsupervised.ca/aoc2021/four"
"unsupervised.ca/aoc2021/one"
"unsupervised.ca/aoc2021/three"
@@ -34,6 +35,8 @@ func main() {
day = three.Init("three/input.txt")
case "four":
day = four.Init("four/input.txt")
case "five":
day = five.Init("five/input.txt")
default:
fmt.Printf("%q does not have a solution.\n", flagParts[1])
help()