Skip to content

Instantly share code, notes, and snippets.

View tmathews's full-sized avatar
🌠
Gotta go fast.

Tom tmathews

🌠
Gotta go fast.
View GitHub Profile
# Credit for this: Nicholas Swift
# as found at https://medium.com/@nicholas.w.swift/easy-a-star-pathfinding-7e6689c7f7b2
from warnings import warn
import heapq
class Node:
"""
A node class for A* Pathfinding
"""