leetcode 43: Multiply Strings

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/hongjinlongno1/article/details/85256668

Runtime: 64 ms, faster than 75.88% of Python3 online submissions for Multiply Strings.
难不成这用其他语言很难???这个还中级难度。。。应该是有其他独特的方法吧

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

猜你喜欢

转载自blog.csdn.net/hongjinlongno1/article/details/85256668
今日推荐