-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-two-numbers.py
35 lines (25 loc) · 949 Bytes
/
add-two-numbers.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
# 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:
carry = 0
head = l1
while(l1 != None or l2 != None):
if(l2 == None):
l1.val += carry
else:
l1.val += l2.val + carry
carry = l1.val//10
curr = l1.val%10
l1.val = curr
if(l1.next == None and carry > 0):
l1.next = ListNode(0)
if(l2 != None):
if(l2.next != None and l1.next == None):
l1.next = ListNode(0)
l2 = l2.next
l1 = l1.next
return head