From 5eb17f923b26e93e3efccd7fb408e7a15c35b6d9 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 22 Jul 2026 05:07:59 -0600 Subject: [PATCH] adding updates --- .../google_top_exercises/round_1/23_number_of_islands.py | 2 -- 1 file changed, 2 deletions(-) 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: