-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMergeTwoSortedLists.py
More file actions
44 lines (37 loc) · 1.05 KB
/
MergeTwoSortedLists.py
File metadata and controls
44 lines (37 loc) · 1.05 KB
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
42
43
44
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution:
# @param two ListNodes
# @return a ListNode
def mergeTwoLists(self, l1, l2):
bucket = []
if l1 == None:
return l2
if l2 == None:
return l1
while l1 != None and l2 != None:
if l1.val < l2.val:
temp = l1
l1 = l1.next
temp.next = None
else:
temp = l2
l2 = l2.next
temp.next = None
bucket.append(temp)
while l1 != None:
temp = l1
l1 = l1.next
temp.next = None
bucket.append(temp)
while l2 != None:
temp = l2
l2 = l2.next
temp.next = None
bucket.append(temp)
for i in xrange(0, len(bucket) - 1):
bucket[i].next = bucket[i + 1]
return bucket[0]