???LeetCode???????????????????????????
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了???LeetCode???????????????????????????相关的知识,希望对你有一定的参考价值。
??????????????? lis ???????????? sel tco python code ?????? val
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
?????????
?????????1->2->4, 1->3->4 ?????????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, l2): """ :type l1: ListNode :type l2: ListNode :rtype: ListNode """ rnode = ListNode(0) cur = rnode while l1 != None: if l2==None: cur.next = l1 return rnode.next if l1.val >= l2.val: cur.next = l2 cur = cur.next l2 = l2.next else: cur.next = l1 cur = cur.next l1 = l1.next if l2: cur.next = l2 return rnode.next
以上是关于???LeetCode???????????????????????????的主要内容,如果未能解决你的问题,请参考以下文章