Files
python/exercises/linked-list/linked_list.py

9 lines
155 B
Python
Raw Normal View History

2016-10-28 12:54:30 +02:00
class Node(object):
def __init__(self, value, next=None, previous=None):
pass
2016-10-28 12:54:30 +02:00
class LinkedList(object):
def __init__(self):
2017-01-28 01:10:32 +00:00
pass