diff --git a/src/my_project/interviews/google_top_exercises/round_1/23_number_of_islands.py b/src/my_project/interviews/google_top_exercises/round_1/23_number_of_islands.py index 9f7f4b64..60e8babb 100644 --- a/src/my_project/interviews/google_top_exercises/round_1/23_number_of_islands.py +++ b/src/my_project/interviews/google_top_exercises/round_1/23_number_of_islands.py @@ -32,8 +32,6 @@ def bfs(r: int, c: int): bfs(r,c) return islands - - def numIslands_DFS(grid: List[List[str]]) -> int: