-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2.AddTwoNumbers.py
38 lines (28 loc) · 1011 Bytes
/
2.AddTwoNumbers.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
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def addTwoNumbers(self, l1: ListNode, l2: ListNode) -> ListNode:
head = ListNode()
it = head
carry = 0
while (l1 != None) or (l2 != None):
if l1 == None:
s = l2.val + carry
l2 = l2.next
elif l2 == None:
s = l1.val + carry
l1 = l1.next
else:
s = l1.val + l2.val + carry
l1, l2 = l1.next, l2.next
it.val = s % 10
carry = s // 10
if (l1 != None) or (l2 != None):
it.next = ListNode()
it = it.next
if carry != 0:
it.next = ListNode(carry, None)
return head