[LeetCode][python3]0021. Merge Two Sorted Lists

Start the Journey
N2I -2020.07.03

1. A Common Solution

  1. class Solution:
  2. def mergeTwoLists(self, l1: ListNode, l2: ListNode) -> ListNode:
  3. dummy = copy = ListNode(None)
  4. while l1 and l2:
  5. if l1.val < l2.val:
  6. dummy.next = l1
  7. l1 = l1.next
  8. else:
  9. dummy.next = l2
  10. l2 = l2.next
  11. dummy = dummy.next
  12. dummy.next = l1 or l2
  13. return copy.next

Explanation:

An easy way to solve this problem. Using two pointer to track the sorted list, and merge them into one.