We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f330cc1 commit e75a811Copy full SHA for e75a811
number-of-islands/Tessa1217.java
@@ -18,7 +18,7 @@ public int numIslands(char[][] grid) {
18
if (grid[i][j] == '1') {
19
20
// bfs로 섬 탐색
21
- bfs(i, j, grid);
+ // bfs(i, j, grid);
22
23
// dfs로 섬 탐색
24
dfs(i, j, grid);
0 commit comments