23.06.01 Today’s Leetcode
1091. Shortest Path in Binary Matrix (medium)
class Solution:
def shortestPathBinaryMatrix(self, grid):
n = len(grid)
if grid[0][0] or grid[n - 1][n - 1]:
return -1
queue = [(0, 0, 1)]
grid[0][0] = 1
for i, j, d in queue:
if i == n - 1 and j == n - 1:
return d
directions = [
(i - 1, j - 1), (i - 1, j), (i - 1, j + 1),
(i, j - 1), (i, j + 1),
(i + 1, j - 1), (i + 1, j), (i + 1, j + 1)
]
for x, y in directions:
if 0 <= x < n and 0 <= y < n and not grid[x][y]:
grid[x][y] = 1
queue.append((x, y, d + 1))
return -1