snergly icon indicating copy to clipboard operation
snergly copied to clipboard

Maze algorithms in Clojure (from Jamis Buck's "Mazes for Programmers" book)

Results 1 snergly issues
Sort by recently updated
recently updated
newest added

All of the algorithms use `lazy-seq` and `cons` to build a lazy sequence of steps in carving out the maze. That process is a little bit fiddly; at least, it's...