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] === '#') {