Skip to content

Commit 7cf55a7

Browse files
committed
newline
1 parent e85090d commit 7cf55a7

File tree

1 file changed

+1
-0
lines changed
  • src/main/kotlin/me/peckb/aoc/_2024/calendar/day06

1 file changed

+1
-0
lines changed

src/main/kotlin/me/peckb/aoc/_2024/calendar/day06/Day06.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ class Day06 @Inject constructor(
7979

8080
while (stepCount < MAX_STEPS && area.containsLocation(guard.location.y, guard.location.x)) {
8181
val (nextY, nextX) = guard.direction.step(guard.location.y, guard.location.x)
82+
8283
step(guard.location.copy())
8384

8485
if (area.containsLocation(nextY, nextX) && area[nextY][nextX] == Space.BLOCKED) {

0 commit comments

Comments
 (0)