Menu
×
×
Correct!
Exercise:Complete the code for the Linked List class.
class Node:
def __init__(self, data):
self.data = data
self.@(4) = None
class Node:
def __init__(self, data):
self.data = data
self.next = None
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 43 exercises.
Are you sure you want to continue?