[LeetCode] Check if There is a Path With Equal Number of 0's And 1's

1 · · Jan. 31, 2023, 5:37 a.m.
2510. Check if There is a Path With Equal Number of 0’s And 1’s You are given a 0-indexed m x n binary matrix grid. You can move from a cell (row, col) to any of the cells (row + 1, col) or (row, col + 1). Return true if there is a path from (0, 0) to (m - 1, n - 1) that visits an equal number of 0’s and 1’s. Otherwise return false. ...