Traceback (most recent call last):
File "C:/python files/USACO/crazy/crazy.py", line 87, in <module>
grid.plot(x,y,"F")
File "C:/python files/USACO/crazy\grid.py", line 63, in plot
self.g[(x,y)] = replace
TypeError: unhashable type: 'list'
You see, I'm hashing a string with the key bing a tuple.
This is using my own 2d grid data structure.