-
Notifications
You must be signed in to change notification settings - Fork 644
Open
Description
给定两个字符串形式的非负整数 num1
和 num2
,计算它们的和。
例如:
"111" + ”2222“ = ”2333“
注意:
num1
和num2
的长度都小于5100
num1
和num2
都只包含数字0-9
num1
和num2
都不包含任何前导零- 你不能使用任何內建 BigInteger 库, 也不能直接将输入的字符串转换为整数形式
附赠leetcode地址:leetcode