Multiply Strings
Given two numbers represented as strings, return multiplication of the numbers as a string.
Note: The numbers can be arbitrarily large and are non-negative.
This is a common question for Big Integer class. For me, it takes around one hour to fix all edge cases... and the code is messy.
Comments
Post a Comment