Skip to content

Instantly share code, notes, and snippets.

View LonerDavid's full-sized avatar

LonerDavid

View GitHub Profile
class Node:
def __init__(self, initdata):
self.data = initdata
self.next = None
def getData(self):
return self.data
def getNext(self):
return self.next