Class Solution
- java.lang.Object
-
- g1001_1100.s1020_number_of_enclaves.Solution
-
public class Solution extends Object
1020 - Number of Enclaves.Medium
You are given an
m x nbinary matrixgrid, where0represents a sea cell and1represents a land cell.A move consists of walking from one land cell to another adjacent ( 4-directionally ) land cell or walking off the boundary of the
grid.Return the number of land cells in
gridfor which we cannot walk off the boundary of the grid in any number of moves.Example 1:

Input: grid = [[0,0,0,0],[1,0,1,0],[0,1,1,0],[0,0,0,0]]
Output: 3
Explanation: There are three 1s that are enclosed by 0s, and one 1 that is not enclosed because its on the boundary.
Example 2:

Input: grid = [[0,1,1,0],[0,0,1,0],[0,0,1,0],[0,0,0,0]]
Output: 0
Explanation: All 1s are either on the boundary or can reach the boundary.
Constraints:
m == grid.lengthn == grid[i].length1 <= m, n <= 500grid[i][j]is either0or1.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intnumEnclaves(int[][] a)
-