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 306a073 commit 37459acCopy full SHA for 37459ac
data_structures/linked_list/doubly_linked_list_two.py
@@ -238,6 +238,7 @@ def create_linked_list() -> None:
238
9
239
>>> linked_list = LinkedList()
240
>>> linked_list
241
+ LinkedList(head=None, tail=None)
242
>>> str(linked_list)
243
>>> linked_list.insert_at_position(position=1, value=10)
244
0 commit comments