mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-27 13:50:32 +01:00
Optimize day 4 enough to run
This commit is contained in:
@@ -19,9 +19,6 @@ locals {
|
||||
y = floor(var.index / var.width)
|
||||
|
||||
directions = {
|
||||
"UL" = [-1, -1]
|
||||
"U" = [0, -1]
|
||||
"UR" = [1, -1]
|
||||
"DL" = [-1, 1]
|
||||
"D" = [0, 1]
|
||||
"DR" = [1, 1]
|
||||
|
||||
Reference in New Issue
Block a user