Find a path in a matrix
Given a matrix with 0s and 1s where where 0 being empty cell and 1 being a blocked cell. Return the path in coordinates from the first cell to the last cell in matrix(if exists).
Given a matrix with 0s and 1s where where 0 being empty cell and 1 being a blocked cell. Return the path in coordinates from the first cell to the last cell in matrix(if exists).