7 lines
86 B
Python
7 lines
86 B
Python
class Node:
|
|
def __init__(self):
|
|
pass
|
|
|
|
class LinkedList:
|
|
def __init__(self):
|
|
pass |