Max Area of Island - Problem
You are given an m x n binary matrix grid. An island is a group of 1's (representing land) connected 4-directionally (horizontal or vertical). You may assume all four edges of the grid are surrounded by water.
The area of an island is the number of cells with a value 1 in the island.
Return the maximum area of an island in grid. If there is no island, return 0.
Input & Output
Example 1 — Basic Grid
$
Input:
grid = [[1,1,0,0],[1,1,0,0],[0,0,1,0]]
›
Output:
4
💡 Note:
The largest island is the top-left 2x2 square of 1's, which has area 4. The bottom-right single 1 has area 1.
Example 2 — All Water
$
Input:
grid = [[0,0,0,0,0,0,0,0]]
›
Output:
0
💡 Note:
There are no islands (no 1's), so the maximum area is 0.
Example 3 — Single Large Island
$
Input:
grid = [[1,1,1],[1,0,1],[1,1,1]]
›
Output:
8
💡 Note:
All 1's are connected around the center 0, forming one island with area 8.
Constraints
- m == grid.length
- n == grid[i].length
- 1 ≤ m, n ≤ 50
- grid[i][j] is either 0 or 1
Visualization
Tap to expand
💡
Explanation
AI Ready
💡 Suggestion
Tab
to accept
Esc
to dismiss
// Output will appear here after running code