ํฐ์คํ ๋ฆฌ ๋ทฐ
๐ง๐ป๐ป ์ฝ๋ฉํ
์คํธ/LeetCode
[LeetCode][DFS] 200. Number of Islands
10000COW 2022. 10. 23. 20:32728x90
๋ฌธ์ :
Given an m x n 2D binary grid grid which represents a map of '1's (land) and '0's (water), return the number of islands.
An island is surrounded by water and is formed by connecting adjacent lands horizontally or vertically. You may assume all four edges of the grid are all surrounded by water.
Example 1:
Input: grid = [
["1","1","1","1","0"],
["1","1","0","1","0"],
["1","1","0","0","0"],
["0","0","0","0","0"]
]
Output: 1
Example 2:
Input: grid = [
["1","1","0","0","0"],
["1","1","0","0","0"],
["0","0","1","0","0"],
["0","0","0","1","1"]
]
Output: 3
Constraints:
- m == grid.length
- n == grid[i].length
- 1 <= m, n <= 300
- grid[i][j] is '0' or '1'.
๋ต:
class Solution:
def numIslands(self, grid: List[List[str]]) -> int:
rows = len(grid)
cols = len(grid[0])
count = 0
def dfs(row: int, col:int):
if row < 0 or row >= rows or \
col < 0 or col >= cols or \
grid[row][col] != "1":
return
grid[row][col] = 0
dfs(row+1, col)
dfs(row, col+1)
dfs(row-1, col)
dfs(row, col-1)
for row in range(rows):
for col in range(cols):
if grid[row][col] == "1":
dfs(row, col)
count += 1
return count
728x90
'๐ง๐ปโ๐ป ์ฝ๋ฉํ ์คํธ > LeetCode' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[LeetCode] 51. N-Queens (Python / JavaScript) (0) | 2023.01.09 |
---|
๊ณต์ง์ฌํญ
์ต๊ทผ์ ์ฌ๋ผ์จ ๊ธ
์ต๊ทผ์ ๋ฌ๋ฆฐ ๋๊ธ
- Total
- Today
- Yesterday
๋งํฌ
TAG
- ์๋ฐ์คํฌ๋ฆฝํธ
- ๊ทธ๋ํ
- ๋ฐ์ดํฐ๋ฒ ์ด์ค
- ์๋ฃ๊ตฌ์กฐ
- JavaScript
- React Query
- ์๊ณ ๋ฆฌ์ฆ
- Python
- Context API
- CSS
- react
- ๋ฆฌ์กํธ
- ํจ์
- zustand
- useState
- Browser
- ๋ธ๋ผ์ฐ์
- DOM
- BOJ
- ์ ๋ ฌ
- github
- ํ์ด์ฌ
- DB
- state
- ์๋ฌ
- mdn
- Component
- error
- git
- leetcode
์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
๊ธ ๋ณด๊ดํจ
250x250