Day 24: Part 2

The search is _not_ fast since it scales as the tiles move away from each other. Should been more clever about the search space ¯\_(ツ)_/¯

Signed-off-by: James Griffin <james@unsupervised.ca>
This commit is contained in:
2020-12-24 12:45:47 -04:00
parent ed12b06814
commit 75a6120c72
3 changed files with 156 additions and 1 deletions

View File

@@ -101,4 +101,5 @@ func main() {
// Day 24
fmt.Println(twentyfour.PartOne())
fmt.Println(twentyfour.PartTwo())
}