Skip to content

Instantly share code, notes, and snippets.

View Petrox's full-sized avatar
🤖
I'm not a robot

Peter Kopias Petrox

🤖
I'm not a robot
View GitHub Profile
@Petrox
Petrox / astar.py
Created August 20, 2017 17:56 — forked from rickhenderson/astar.py
A* Algorithm implementation in Python3.
"""
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().
"""