Closed this issue · 0 comments
darrenfu commented
12/12/2019
Limitations:
- Both numbers are positive and could be very long;
- Integer addition and multiplication could overflow, which means you could not simply sum the multiplied numbers via
result += prod
, you have to do multi-large-integer addition digit by digit.