Search
Archives
Tags
Category Archives for Uncategorized
Python Recursive Maze Example
Here is a small python script that creates a maze to illustrate the concept of recursion. Hopefully the comments help clear up any confusion some new programmers might have about how it works. #!/usr/bin/env python “”"maze.py: Creates a maze to illustrate recursion.”"” import random def makeMaze(width, height): “”"Initializes an 2D list for the maze then [...]
Tagged example, python, recursion
Leave a comment
Start of 2012
It is really late at night right now. I am currently in the process of creating a fresh new site with a whole new theme and all new content. At the moment the theme is fairly simplistic, but I kind of like it that way. It’s clear, readable, and free of distractions. Why am I [...]
Tagged thoughts
Leave a comment