[LeetCode 43] 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.
- Converting the input string to integer is NOT allowed.
You should NOT use internal library such as BigInteger.
Diffculty
Medium
Similar Problems
[LeetCode ] Add Two Numbers Medium
[LeetCode ] Plus One Easy
[LeetCode ] Add Binary Easy
[LeetCode ] Add Strings Easy