Find Number of Islands

You are provided with a 2-dimensional array/list of size N rows by M columns, containing ones (1) and zeroes (0). Here, 1 represents land, and 0 represents water.

A cell is considered connected to another if it is immediately adjacent in any of the eight possible directions: two vertical, two horizontal, and four diagonal.

Your task is to determine the number of islands in the matrix, where an island is defined as a group of connected 1s.

Input:

The first line of input includes two integers, 'N' and 'M', separated by a space, representing the number of rows and columns of the matrix.
The subsequent 'N' lines each contain 'M' integer values separated by a space, signifying each row of the matrix.

Output:

A single integer that denotes the total count of islands within the 2-dimensional array.

Example:

Input:
4 5
1 1 0 0 0
0 1 0 0 1
1 0 0 1 1
0 0 0 0 0
Output:
3
Explanation:

The given matrix contains three islands.

Constraints:

  • 1 <= N <= 10^3
  • 1 <= M <= 10^3
  • 0 <= ARR[i][j] <= 1
  • Time limit: 1 sec

Note:

You're not required to print anything directly as it is handled by the implementation of the function. Just ensure the function returns the correct number of islands.

AnswerBot
5d

Find the number of islands in a 2D matrix of 1s and 0s.

  • Iterate through the matrix and perform depth-first search (DFS) to find connected 1s.

  • Use a visited array to keep track of visited cells to avoid ...read more

Help your peers!
Add answer anonymously...
Amazon Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter