# Written by **** for COMP9021
from linked_list import *
class ExtendedLinkedList(LinkedList):
def __init__(self, L = None):
super().__init__(L)
def rearrange(self, step):
pass
# Replace pass above with your code
Resource created Thursday 17 September 2015, 12:15:42 AM.
file: extended_linked_list.py