Multiply Strings(math)
Given two non-negative integersnum1
andnum2
represented as strings, return the product ofnum1
andnum2
, also represented as a string.
Example 1:
Example 2:
Note:
分析
也可把num1 num2换成数字后直接相乘
Last updated
Given two non-negative integersnum1
andnum2
represented as strings, return the product ofnum1
andnum2
, also represented as a string.
Example 1:
Example 2:
Note:
分析
也可把num1 num2换成数字后直接相乘
Last updated