Add solution for day 3

This commit is contained in:
2021-12-03 14:14:36 +00:00
parent 95b0635e7a
commit 5fc7348bdf
5 changed files with 1224 additions and 0 deletions

View File

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