Last updated
Was this helpful?
Last updated
Was this helpful?
Given two non-negative integersnum1
andnum2
represented as strings, return the product ofnum1
andnum2
.
Note:
The length of bothnum1
andnum2
is < 110.
Bothnum1
andnum2
contains only digits0-9
.
Bothnum1
andnum2
does not contain any leading zero.
You must not use any built-in BigInteger library or convert the inputs to integer directly.
这个看解释。首先得注意的是,我们从左到右process string,所以乘积的array是反过来的。然后记住array的长度是两个数的长度之和,例如9 × 9 = 81, 结果长度是num1的长度+num2的长度。然后处理时注意把前缀0去掉,不然0 * 0 = 00这就不对了。最后记得把答案翻转过来。ans[i + j] += a[i] * b[j],然后一次性进位。
容易记点的解法: