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.

细节需要注意,尤其是生成0 的部分,从高位开始剔除0;
而且?: 与后面运算符及其容易混淆,必须加上()
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.

细节需要注意,尤其是生成0 的部分,从高位开始剔除0;
而且?: 与后面运算符及其容易混淆,必须加上()