Day 18: Part 1 and 2

Signed-off-by: James Griffin <james@unsupervised.ca>
This commit is contained in:
2020-12-18 21:13:07 -04:00
parent 151e20f7b8
commit 31effe9cb4
9 changed files with 723 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ package main
import (
"fmt"
"github.com/thatguygriff/aoc2020/seventeen"
"github.com/thatguygriff/aoc2020/eighteen"
)
func main() {
@@ -72,5 +72,10 @@ func main() {
// fmt.Println(sixteen.PartTwo())
// Day 17
fmt.Println(seventeen.PartTwo())
// fmt.Println(seventeen.PartOne())
// fmt.Println(seventeen.PartTwo())
// Day 18
fmt.Println(eighteen.PartOne())
fmt.Println(eighteen.PartTwo())
}