Skip to content

Commit a087e70

Browse files
committed
Formatting
1 parent 300f771 commit a087e70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solutions/day16.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def find_routes(self, data: List[str]) -> List[Tuple[List[Tuple[int, int]], int]
100100
continue
101101

102102
new_y, new_x = y + dy, x + dx
103-
103+
104104
# Check if new position is valid
105105
if (
106106
0 <= new_y < len(grid)

0 commit comments

Comments
 (0)