Leetcode 415.字符串相加(Add Strings)

Leetcode 415.字符串相加

1 题目描述(Leetcode题目链接)

  给定两个字符串形式的非负整数 num1 和num2 ,计算它们的和。

注意:

  • num1 和num2 的长度都小于 5100.
  • num1 和num2 都只包含数字 0-9.
  • num1 和num2 都不包含任何前导零。

你不能使用任何內建 BigInteger 库, 也不能直接将输入的字符串转换为整数形式。

2 题解

  按位相加,记录进位。

class Solution:
    def addStrings(self, num1: str, num2: str) -> str:
        res = ""
        i, j, carry = len(num1) - 1, len(num2) - 1, 0
        while i >= 0 or j >= 0:
            a = int(num1[i]) if i >= 0 else 0
            b = int(num2[j]) if j >= 0 else 0
            p = a + b + carry
            res += str(p % 10)
            carry = p // 10
            i, j = i - 1, j - 1
        return res[::-1] if not carry else "1" + res[::-1]

你可能感兴趣的:(Leetcode,leetcode,算法)