Skip to content

Instantly share code, notes, and snippets.

View dingaroo's full-sized avatar
💭
I may be slow to respond.

Arifin Othman dingaroo

💭
I may be slow to respond.
View GitHub Profile
@dingaroo
dingaroo / gist:9dcd2f360b524cb97b18ce3a7ecf469d
Created May 12, 2018 04:59 — forked from econchick/gist:4666413
Python implementation of Dijkstra's Algorithm
class Graph:
def __init__(self):
self.nodes = set()
self.edges = defaultdict(list)
self.distances = {}
def add_node(self, value):
self.nodes.add(value)
def add_edge(self, from_node, to_node, distance):