...

/

Number of Islands

Number of Islands

Try to solve the Number of Islands problem.

Statement

Let’s consider a scenario with an (m×n)(m \times n) 2D grid containing binary numbers, where '0' represents water and '1' represents land. If any '1' cells are connected to each other horizontally or vertically (not diagonally), they form an island. Your task is to return the total number of islands in the grid.

Constraints:

  • 11 \leq grid.length 50\leq 50

  • 11 \leq grid[i].length 50\leq 50

  • grid[i][j] is either '0' or '1'.

Examples

Press + to interact
canvasAnimation-image
1 / 3

Understand the problem

Let’s take a moment to make sure you’ve correctly understood the problem. The quiz below helps you check if you’re solving the correct problem:

Number of Islands

1

What is the output if the following grid is given as input?

grid=[[1,0,0],[0,0,0],[0,0,1]] grid = \begin{matrix} [[1, 0, 0], \\ [0, 0, 0], \\ [0, 0, 1]] \end{matrix}

A)

1

B)

0

C)

2

D)

3

Question 1 of 30 attempted

Figure it out!

We have a game for you to play. Rearrange the logical building blocks to develop a clearer understanding of how to solve this problem.

Sequence - Vertical
Drag and drop the cards to rearrange them in the correct sequence.

1
2
3
4

Try it yourself

Implement your solution in main.go in the following coding playground. You will need the provided supporting code to implement your solution.

Press + to interact
Go
usercode > main.go
/*
⬅️ We have provided a union_find.go file under the "Files" tab
of this widget. You can use this file to build your solution.
*/
package main
func numIslands(grid [][]byte) int {
// Replace this placeholder return statement with your code
return -1
}
Number of Islands

Access this course and 1200+ top-rated courses and projects.