Add day four Bingo player

This commit is contained in:
2021-12-04 14:03:47 +00:00
parent 5fc7348bdf
commit f6862dc302
6 changed files with 937 additions and 0 deletions

View File

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