Skip to content

Commit bf32e03

Browse files
committed
Modifying Efficient Solution for Problem - 21 - Merge Two Sorted Lists
1 parent a1d7b6a commit bf32e03

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Merge_Two_Sort_Lists/EfficientSolution.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ def mergeTwoLists(self, l1, l2):
1818
point = head #Pointer for reference
1919

2020
while l1 or l2: #While either of the list is empty or not.
21-
if l1 is None and l2 is None: #Condition-check: if l1 is empty and l2 is empty
22-
break #We enter the condition and break the loop.
23-
elif l1 is None: #Condition-check: if l1 is empty.
21+
if l1 is None: #Condition-check: if l1 is empty.
2422
point.next = l2 #We enter the condition and point it to l2
2523
break #Then we break the loop.
2624
elif l2 is None: #Condition-check: if l2 is empty

0 commit comments

Comments
 (0)