Skip to content

Commit 37459ac

Browse files
Update doubly_linked_list_two.py
1 parent 306a073 commit 37459ac

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: data_structures/linked_list/doubly_linked_list_two.py

+1
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ def create_linked_list() -> None:
238238
9
239239
>>> linked_list = LinkedList()
240240
>>> linked_list
241+
LinkedList(head=None, tail=None)
241242
>>> str(linked_list)
242243
>>> linked_list.insert_at_position(position=1, value=10)
243244
>>> linked_list

0 commit comments

Comments
 (0)