Skip to content

Instantly share code, notes, and snippets.

@raymondchua
Created December 2, 2013 00:05
Creates an object node.
class Node:
def __init__(self,value):
self.value = value
self.adjacentNodes=[]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment