Skip to content

Commit

Permalink
Update Number_Of_Enclaves.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
STREIN-11 authored Sep 29, 2023
1 parent 45a4d1c commit c026741
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Daily/Number_Of_Enclaves.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ A move consists of walking from one land cell to another adjacent (4-directional
Find the number of land cells in grid for 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},
Expand Down Expand Up @@ -119,4 +118,4 @@ int main() {
cout << obj.numberOfEnclaves(grid) << endl;
}
}
// } Driver Code Ends
// } Driver Code Ends

0 comments on commit c026741

Please sign in to comment.