Day 11: Part 1 and 2

It isn’t pretty but it works

Signed-off-by: James Griffin <james.griffin-allwood@agilebits.com>
This commit is contained in:
James Griffin
2020-12-11 11:54:36 -04:00
parent 9bf150623e
commit 6029eed213
5 changed files with 698 additions and 3 deletions

10
main.go
View File

@@ -3,7 +3,7 @@ package main
import (
"fmt"
"github.com/thatguygriff/aoc2020/ten"
"github.com/thatguygriff/aoc2020/eleven"
)
func main() {
@@ -44,6 +44,10 @@ func main() {
// fmt.Println(nine.PartTwo())
// Day 10
fmt.Println(ten.PartOne())
fmt.Println(ten.PartTwo())
// fmt.Println(ten.PartOne())
// fmt.Println(ten.PartTwo())
// Day 11
fmt.Println(eleven.PartOne())
fmt.Println(eleven.PartTwo())
}