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

14 lines
304 B
Python
Raw Normal View History

2016-10-28 12:54:30 +02:00
# Skeleton file for the Python "linked-list" exercise.
class Node(object):
def __init__(self, value, next=None, prev=None):
self.value = value
self.next = next
self.prev = prev
class LinkedList(object):
def __init__(self):
pass # Complete the Deque class ...