Skip to content

Commit 1420817

Browse files
Update datastructures/linked_lists/linked_list_utils.py
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent b8ce4a5 commit 1420817

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datastructures/linked_lists/linked_list_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def sum_of_linked_lists(
199199
head_one(Node): head node of the first linked list
200200
head_two(Node): head node of the second linked list
201201
Returns:
202-
Node: head node of newly crewted linked list
202+
Node: head node of newly created linked list
203203
"""
204204
if not head_one and not head_two:
205205
return None

0 commit comments

Comments
 (0)