清爽战斗机

文章
4
资源
0
加入时间
2年10月24天

海洋陆地地图

from collections import dequeclass Solution: def maxDistance(self, grid): queue = deque() row = len(grid) col = len(grid[0]) res = [[0 for _ in range(row)]for _ in range(col)] visited = [[False for _ in range(ro