Enclosed Islands
You are given a two-dimensional integer matrix of 1s and 0s. A 1 represents land and 0 represents water. From any land cell you can move up, down, left or right to another land cell or go off the matrix.
Return the number of land cells from which we cannot go off the matrix.
Constraints
n, m ≤ 250wherenandmare the number of rows and columns inmatrix
https://binarysearch.com/problems/Enclosed-Islands
Examples
Example 1
Input
- matrix =
[[0,0,0,1],
[0,1,1,0],
[0,1,1,0],
[0,0,0,0]]
Output
- answer =
4
Explanation
There’s 4 land squares in the middle from which we cannot walk off the matrix.
Leave a comment