Coding Challenge #2: Maze Generation
Generating a maze in javascript
So this weeks challenge is generating a maze with javascript. But why would you do that?
In my opinion it is an easy and interesting way to get familiar with a new programming language or better at programming in general.
We'll generate the maze using the random walker from the last challenge. But if it tries to visit a point twice it will...
Read more...