To the Top
File:  root - text - article - 2019 - 12 - find-the-number-of-islands.txt.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 137 Views, 15206 Search Bots | 125 Words

Subscribe to Feed Burner | Browse | Archive
Hi, here's your problem today. This problem was recently asked by LinkedIn:

Given a 2-dimensional grid consisting of 1's (land blocks) and 0's (water blocks), count the number of islands present in the grid. The definition of an island is as follows:
1.) Must be surrounded by water blocks.
2.) Consists of land blocks (1's) connected to adjacent land blocks (either vertically or horizontally).
Assume all edges outside of the grid are water.

Example:
Input:

10001
11000
10110
00000


Output: 3
Here's your starting point:


class Solution(object):
def inRange(self, grid, r, c):
numRow, numCol = len(grid), len(grid[0])
if r < 0 or c < 0 or r >= numRow or c >= numCol:
return False
return True

def numIslands(self, grid):
# Fill this in.

grid = [[1, 1, 0, 0, 0],
[0, 1, 0, 0, 1],
[1, 0, 0, 1, 1],
[0, 0, 0, 0, 0]]
print(Solution().numIslands(grid))
# 3
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 137 Views, 15206 Search Bots | 125 Words Subscribe to Feed Burner

Related Articles

  1. Algorithm Interview: Make the Largest Number
  2. Plus One
  3. Design Tic-Tac-Toe
  4. YES!!
  5. Autorun.inf Virus Protection
  6. Patterns for breaking down questions you haven
  7. Find Missing Numbers in an Array
  8. [Daily Problem] Validate Balanced Parentheses
  9. Sorting a list with 3 unique numbers
  10. Daily Interview Problem: Count Number of Unival Subtrees

Comments (0)

    Be the first one to comment this page !


Page Edited: October 30 2020 14:21:09 | RSS Subscription
How to Cook a Perfect Steak? | <meta name="robots" content="noindex, follow" />