43. Multiply Strings:
Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2, also represented as a string.
Example 1:
1  | Input: num1 = "2", num2 = "3"  | 
Example 2:
1  | Input: num1 = "123", num2 = "456"  | 
Solution
1  | public String multiply(String num1, String num2) {  |