43. 字符串相乘

class Solution:
    def multiply(self, num1, num2):
        """
        :type num1: str
        :type num2: str
        :rtype: str
        """
        return str(int(num1)*int(num2))

相关文章:

  • 2021-11-27
  • 2021-06-13
  • 2021-12-09
  • 2021-11-19
  • 2021-12-17
  • 2021-10-20
  • 2021-07-01
猜你喜欢
  • 2021-09-06
  • 2021-09-30
  • 2022-12-23
  • 2022-12-23
  • 2021-06-06
相关资源
相似解决方案