-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerge-two-sorted-lists.py
42 lines (40 loc) · 1.29 KB
/
merge-two-sorted-lists.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# https://leetcode.com/problems/merge-two-sorted-lists/
# Definition for singly-linked list.
# class ListNode(object):
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution(object):
def mergeTwoLists(self, l1, l2):
'''
:type l1: ListNode
:type l2: ListNode
:rtype: ListNode
'''
cur = ll = ListNode() # init merged list to return
while l1 or l2:
if l1 and l2:
if l1.val < l2.val:
cur.next = ListNode(l1.val)
cur = cur.next
l1 = l1.next
elif l1.val > l2.val:
cur.next = ListNode(l2.val)
cur = cur.next
l2 = l2.next
else:
cur.next = ListNode(l1.val)
cur = cur.next
cur.next = ListNode(l2.val)
cur = cur.next
l1 = l1.next
l2 = l2.next
elif l1:
cur.next = ListNode(l1.val)
cur = cur.next
l1 = l1.next
elif l2:
cur.next = ListNode(l2.val)
cur = cur.next
l2 = l2.next
return ll.next