Day 8 solution

This commit is contained in:
2021-12-08 14:51:00 +00:00
parent f2e471f2a4
commit b62022ff07
7 changed files with 503 additions and 0 deletions

View File

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