43 Multiply Strings
Given two numbers represented as strings, return multiplication of the numbers as a string.
Note:
Algorithm:
Store into vector of digits using itoa
Last updated
Given two numbers represented as strings, return multiplication of the numbers as a string.
Note:
Algorithm:
Store into vector of digits using itoa
Last updated