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 c5bd636 commit 767cbf3Copy full SHA for 767cbf3
data_structures/linked_list/doubly_linked_list_two.py
@@ -22,15 +22,6 @@ class Node:
22
def __str__(self) -> str:
23
return f"{self.data}"
24
25
- def get_data(self) -> int:
26
- return self.data
27
-
28
- def get_next(self):
29
- return self.next
30
31
- def get_previous(self):
32
- return self.previous
33
34
35
class LinkedListIterator:
36
def __init__(self, head):
0 commit comments