接外包,有相关需求的可以联系我:Telegram | Email

Multiply Strings

该文章创建(更新)于04/19/2022,请注意文章的时效性!

文章目录[隐藏]

Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2, also represented as a string.

Note: You must not use any built-in BigInteger library or convert the inputs to integer directly.【The sadest things which I can found the fastest soultion in leetcode break this rule.】

Solution

  • submit code
class Solution:
    def multiply(self, num1: str, num2: str) -> str:
        #return str(eval(num1 + "*" + num2))

        # base case
        if num1 == "0" or num2 == "0":
            return "0"

        ret = [0] * (len(num1) + len(num2))

        i = len(num1) - 1
        while i >= 0:
            j = len(num2) - 1
            while j >= 0:
                mul = int(eval(num1[i] + "*" + num2[j]))
                p1 = i + j
                p2 = i + j + 1
                sum = int(ret[p2]) + mul

                ret[p2] = sum % 10
                ret[p1] = int(ret[p1]) + int(sum / 10)
                j -= 1
            i -= 1

        # remove the leading 0
        while ret[0] == 0:
            ret = ret[1:]

        res = ""
        for i in ret:
            res += str(i)

        return res
  • full code
class Solution:
    def multiply(self, num1, num2):
        #return str(eval(num1 + "*" + num2))

        # base case
        if num1 == "0" or num2 == "0":
            return "0"

        ret = [0] * (len(num1) + len(num2))

        i = len(num1) - 1
        while i >= 0:
            j = len(num2) - 1
            while j >= 0:
                mul = int(eval(num1[i] + "*" + num2[j]))
                p1 = i + j
                p2 = i + j + 1
                sum = int(ret[p2]) + mul

                ret[p2] = sum % 10
                ret[p1] = int(ret[p1]) + int(sum / 10)
                j -= 1
            i -= 1

        # remove the leading 0
        while ret[0] == 0:
            ret = ret[1:]

        res = ""
        for i in ret:
            res += str(i)

        return res


S = Solution()
print(S.multiply("12", "456"))

要不赞赏一下?

微信
支付宝
PayPal
Bitcoin

版权声明 | Copyright

除非特别说明,本博客所有作品均采用知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议进行许可。转载请注明转自-
https://www.emperinter.info/2022/04/19/multiply-strings/


要不聊聊?

我相信你准备留下的内容是经过思考的!【勾选防爬虫,未勾选无法留言】

*

*



YouTube | B站

微信公众号

👉 NewsLetter ❤️ 邮箱订阅 👈

优惠码

阿里云国际版20美元
Vultr10美元
搬瓦工 | Bandwagon应该有折扣吧?
Just My SocksJMS9272283 【注意手动复制去跳转】
域名 | namesiloemperinter(1美元)
币安 币安