共计 421 个字符,预计需要花费 2 分钟才能阅读完成。
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.
Example:
Input: 1->2->4, 1->3->4
Output: 1->1->2->3->4->4
解法
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution:
def mergeTwoLists(self, l1: 'ListNode', l2: 'ListNode') -> 'ListNode':
newHead = ListNode(None)
pointer = newHead
while l1 or l2:
if l1 is not None and (l2 is None or l1.val <= l2.val):
pointer.next = l1
l1 = l1.next
else:
pointer.next = l2
l2 = l2.next
pointer = pointer.next
return newHead.next
正文完
请博主喝杯咖啡吧!