added script for single file (to assist with debug)

This commit is contained in:
Stephen McQuay 2012-10-30 23:23:14 -07:00
parent 66a370b634
commit e7d56df745
1 changed files with 6 additions and 0 deletions

6
bin/solve_file.py Normal file
View File

@ -0,0 +1,6 @@
import sys
from maze import parse_maze
m = parse_maze(open(sys.argv[1], 'r').read())
print m.solve()