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'.


SolvingApproachs:

 class Solution:
    def numIslands(self, grid: List[List[str]]) -> int:
#         q = deque()

#         ROWS = len(grid)
#         COLS = len(grid[0])

#         self.island_count = 0


#         def checkNeigbour(r, c):
#             if r < 0 or c < 0 or r == ROWS or c == COLS or grid[r][c] == '0':
#                   return
#             q.append([r,c])
#             grid[r][c] = '0'
#             #visited.add((r,c))

#         def countIsland(r, c):
#             q.append([r,c])
#             self.island_count+=1

#             while q:
#               r, c = q.popleft() # using queue
#               grid[r][c] = '0'

#               checkNeigbour(r+1, c)
#               checkNeigbour(r-1, c)
#               checkNeigbour(r, c+1)
#               checkNeigbour(r, c-1)



#         for r in range(ROWS):
#             for c in range(COLS):
#                 if grid[r][c] == '0':
#                   continue
#                 countIsland(r, c)

#         return self.island_count

        q = deque()

        ROWS = len(grid)
        COLS = len(grid[0])

        self.island_count = 0


        def checkNeigbour(r, c):
            if r < 0 or c < 0 or r == ROWS or c == COLS or grid[r][c] == '0':
                  return
            q.append([r,c])
            grid[r][c] = '0'
            #visited.add((r,c))

        def countIsland(r, c):
            q.append([r,c])
            self.island_count+=1

            while q:
              r, c = q.pop() # using stack
              grid[r][c] = '0'

              checkNeigbour(r+1, c)
              checkNeigbour(r-1, c)
              checkNeigbour(r, c+1)
              checkNeigbour(r, c-1)



        for r in range(ROWS):
            for c in range(COLS):
                if grid[r][c] == '0':
                  continue
                countIsland(r, c)

        return self.island_count

Random Note


Amortized time is the way to express the time complexity when an algorithm has the very bad time complexity only once in a while besides the time complexity that happens most of time. Good example would be an ArrayList which is a data structure that contains an array and can be extended.