Given two non-negative numbers num1 and num2 represented as string, return the sum of num1 and num2 .
Note:
- 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.
這題比較麻煩的是不能使用 atoi 這種函數來處理,必須自己來做轉換
最簡單的方法就是減掉字元 '0',然後把差值用 int 存起來就可以
解題概念如下
- 每個字串都從最後開始
- 如果長度不夠,就補0
- 每次相加要記得進位的部分
- 最後回傳答案時,如果進位部分不是 0,那記得加個前綴 "1" (因為只有兩數相加,最多進位1)
沒有留言:
張貼留言