Day 23: Part 2

Rewrite with a linked list and pointer cache because array allocation was optimistic at best

Signed-off-by: James Griffin <james@unsupervised.ca>
This commit is contained in:
2020-12-23 18:43:51 -04:00
parent 35de155e0b
commit 6584675e5a
3 changed files with 125 additions and 91 deletions

View File

@@ -97,4 +97,5 @@ func main() {
// Day 23
fmt.Println(twentythree.PartOne())
fmt.Println(twentythree.PartTwo())
}