/count-paths-in-matrix-visualization

Algorithm visualization. 🧮 Count paths in matrix with obstacles.

Primary LanguageTypeScript

Visualization for coding challenge: count all possible paths in matrix

DEMO

Count path in matrix visualization

Problem description:

Count all the possible paths from top left to bottom right of a matrix.

Constraints:

  1. from each cell you can either move only to right or down.
  2. you should avoid walls.