Skip to content

Instantly share code, notes, and snippets.

@n0phx
n0phx / graph.py
Last active April 16, 2016 08:36
edX MIT 6.00x Problem Set 10 solution
# 6.00 Problem Set 10
# Graph optimization
#
# A set of data structures to represent graphs
#
class Node(object):
def __init__(self, name):