Multiply Two Strings
Problem Statement
Given two numbers as strings s1 and s2. Calculate their Product.
Note : The numbers can be negative.
Example 1
Example 2
Task
You don't need to read input or print anything. Your task is to complete the function multiplyStrings() which takes two strings s1 and s2 as input and returns their product as a string.
Expected Time Complexity : O(n1 * n2).
Expected Auxiliary Space : O(n1 + n2); where n1 and n2 are sizes of strings s1 and s2 respectively.
Constraints :
1 <= Length of s1 and s2 <= 103
0 Comments