Show HN: I wrote a maze traversal program in Clojure
Checks the maze matrix and gets the vector which contains the start position marker(*). ; We can go right if our position does not exceed the boundaries of the maze AND we cannot step on an “x”. ; We can go down if our floor does not exceed the boundaries of the maze AND we cannot step on an “x”.
Source: github.com