题目链接
英文链接:https://leetcode.com/problems/add-strings/
中文链接:https://leetcode-cn.com/problems/add-strings/
题目详述
给定两个字符串形式的非负整数 num1 和num2 ,计算它们的和。
注意:
- num1 和num2 的长度都小于 5100.
- num1 和num2 都只包含数字 0-9.
- num1 和num2 都不包含任何前导零。
- 你不能使用任何內建 BigInteger 库, 也不能直接将输入的字符串转换为整数形式。
题目详解
模拟竖式加法,LeetCode67-二进制求和 等题目都是类似的解法。
1 | public class LeetCode_00415 { |