Given two non-negative integers num1
and num2
represented as string, return the sum of num1
and num2
.
- The length of both
num1
andnum2
is < 5100. - Both
num1
andnum2
contains only digits0-9
. - Both
num1
andnum2
does not contain any leading zero. - You must not use any built-in BigInteger library or convert the inputs to integer directly.
class Solution:
def addStrings(self, num1: str, num2: str) -> str:
sum = ""
i, j = len(num1) - 1, len(num2) - 1
carry = 0
while i >= 0 or j >= 0:
carry += ord(num1[i]) - 48 if i >= 0 else 0
carry += ord(num2[j]) - 48 if j >= 0 else 0
sum += str(carry % 10)
carry //= 10
i -= 1
j -= 1
return '1' * carry + sum[::-1]