Search results
Number of Enclaves - You are given an m x n binary matrix grid, where 0 represents a sea cell and 1 represents 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.
Number of Enclaves - You are given an m x n binary matrix grid, where 0 represents a sea cell and 1 represents 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.
Number of Enclaves - LeetCode. Can you solve this real interview question? Number of Enclaves - Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
Can you solve this real interview question? Number of Distinct Islands II - Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
Number of Islands - LeetCode. Can you solve this real interview question? Number of Islands - Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
Can you solve this real interview question? Number of Provinces - There are n cities. Some of them are connected, while some are not. If city a is connected directly with city b, and city b is connected directly with city c, then city a is connected indirectly with city c.
View VISHAL_009's solution of Number of Enclaves on LeetCode, the world's largest programming community.
Remove K Digits - Given string num representing a non-negative integer num, and an integer k, return the smallest possible integer after removing k digits from num. Example 1: Input: num = "1432219", k = 3 Output: "1219" Explanation: Remove the three digits 4, 3, and 2 to form the new number 1219 which is the smallest.
Return an array containing all the safe nodes of the graph. The answer should be sorted in ascending order. Example 1: Input: graph = [[1,2],[2,3],[5],[0],[5],[],[]] Output: [2,4,5,6] Explanation: The given graph is shown above. Nodes 5 and 6 are terminal nodes as there are no outgoing edges from either of them.
Number of Islands - Given an m x n 2D binary grid grid which represents a map of '1's (land) and '0's (water), return the number of islands. An island is surrounded by water and is formed by connecting adjacent lands horizontally or vertically.