We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a816e7 commit 2e137daCopy full SHA for 2e137da
data_structures/linked_list/merge_linked_list.py
@@ -29,6 +29,6 @@ def merge(l1, l2):
29
30
ptr = head_merged
31
while ptr:
32
- print ptr.val
+ print(ptr.val)
33
ptr = ptr.next
34
0 commit comments