From 003b658aa2490578b5177e8c3e787e85df602675 Mon Sep 17 00:00:00 2001 From: mtrx Date: Sun, 8 Dec 2024 00:53:17 +0100 Subject: [PATCH] old comments --- solutions/06.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/solutions/06.ts b/solutions/06.ts index 234a0db..a9d1ea9 100644 --- a/solutions/06.ts +++ b/solutions/06.ts @@ -51,10 +51,8 @@ class DaySix implements Solvable { // if oob, return true if (!nextStepInBounds[direction]) { - console.log('went oob') return [true, x, y, direction] } else { - // console.log(y, x, direction) // if obstacle ahead, return false and current location const [nextX, nextY] = this.lookAhead(x, y, direction) if (this.map[nextY][nextX] === '#') {