Skip to content

Commit 091b5ce

Browse files
committed
Fix
1 parent 551bab4 commit 091b5ce

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

data_structures/linked_list/doubly_linked_list_two.py

+4
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,13 @@ def create_linked_list() -> None:
241241
>>> linked_list
242242
LinkedList(head=Node(data=10, previous=None, next=None), tail=Node(data=10, previous=None, next=None))
243243
>>> linked_list.insert_at_position(position=2, value=20)
244+
>>> linked_list
244245
>>> linked_list.insert_at_position(position=1, value=30)
246+
>>> linked_list
245247
>>> linked_list.insert_at_position(position=2, value=40)
248+
>>> linked_list
246249
>>> linked_list.insert_at_position(position=3, value=50)
250+
>>> linked_list
247251
"""
248252

249253

0 commit comments

Comments
 (0)