๐Ÿ“ฆ rooftopcellist / PythonDataStructures

๐Ÿ“„ Node.py ยท 5 lines
1
2
3
4
5#Simple Node class without operations
class Node:
	def __init__(self, data):
		self.data = data
		self.next = None