Difference between revisions of "Node.py"
From WLCS
(Created page with "<syntaxhighlight lang="Python"> class Node: def __init__(self): self.data = 0 self.next = None </syntaxhighlight>") |
(No difference)
|
Latest revision as of 22:19, 17 October 2013
class Node:
def __init__(self):
self.data = 0
self.next = None