
Shortest Path in Binary Matrix - LeetCode
Shortest Path in Binary Matrix - Given an n x n binary matrix grid, return the length of the shortest clear path in the matrix. If there is no clear path, return -1.
Meta Variants for Shortest Path in Binary Matrix (LC1091) - LeetCode
Mar 16, 2025 · I have another solution up for a Top 20 Meta tagged question, Leetcode 1091 Shortest Path in Binary Matrix as well as its 2 variants. While it’s true the original Leetcode …
01 Matrix - LeetCode
Can you solve this real interview question? 01 Matrix - Given an m x n binary matrix mat, return the distance of the nearest 0 for each cell. The distance between two cells sharing a common …
Shortest Path in Binary Matrix - LeetCode
Can you solve this real interview question? Shortest Path in Binary Matrix - Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared …
Path Sum - LeetCode
Path Sum - Given the root of a binary tree and an integer targetSum, return true if the tree has a root-to-leaf path such that adding up all the values along the path equals targetSum.