We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f925219 commit 5e450f9Copy full SHA for 5e450f9
Chapter04/doubly_linked_list.py
@@ -1,4 +1,4 @@
1
-class Node(object):
+class Node:
2
def __init__ (self, data = None, next = None, prev = None):
3
self.data = data
4
self.next = next
0 commit comments