This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| A* Algorithm implementation in Python. | |
| Written by: James Sigurðarson (jamiees2) | |
| Source: https://gist.github.com/jamiees2/5531924 | |
| Modified by Rick Henderson | |
| May 5, 2016: Began updating to Python 3.x. Also improved spacing and comments. | |
| Converted xrange() to range(). Converted raw_input() to input(). | |
| """ |