43. 字符串相乘

class Solution: def multiply(self, num1, num2): """ :type num1: str :type num2: str :rtype: str """ return str(int(num1)*int(num2))
相關文章
相關標籤/搜索