2.Add Two Numbers Leetcode Python

1062 ワード

You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8
この問題は2つのlinklistを加算し、加算するときに現在加算されている値を1つのvalで記録し、得られた値を新しいLinklistの末尾に追加する必要があります.
最後に最後のvalが1残っている場合は、尻尾として新しいnodeを追加する必要があります.
# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    # @return a ListNode
    def addTwoNumbers(self, l1, l2):
        val=0
        dummy=head=ListNode(0)
        while l1 or l2:
            if l1:
                val+=l1.val
                l1=l1.next
            if l2:
                val+=l2.val
                l2=l2.next
            head.next=ListNode(val%10)
            head=head.next
            val/=10
        if val==1:
            head.next=ListNode(1)
        return dummy.next