I am new to Python and have been trying my hand at some programming problems to get a better hold of the language. So far I've read Guido's essay at http://www.python.org/doc/essays/graphs.html . This has helped me understand how to work with graphs. But, competitive programming problems mostly have two dimensional grids:
U..X
..X.
X..X
..X.
How do I represent those in Python? Is a list of lists a good representation? Is there a better or more "Pythonic" method? Thanks.
NetworkXit is easy to use asPythonitself. – Developer Jan 13 at 2:09