leetcode-DFS、BFS

200. 島嶼數量 class Solution: def numIslands(self, grid: List[List[str]]) -> int: nextStep = [[0, 1], [0, -1], [-1, 0], [1, 0]] step = 0 def dfs(grid, x, y):
相關文章
相關標籤/搜索