started to think about solving the maze

This commit is contained in:
sm
2012-10-30 22:29:47 -07:00
parent cd7c65fc33
commit 66a370b634
3 changed files with 10 additions and 2 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
from maze import make_maze
print make_maze()
m = make_maze()
print m
+1
View File
@@ -3,3 +3,4 @@ import sys
from maze import parse_maze
m = parse_maze(sys.stdin.read())
print m.solve()