leetcode 二进制求和 python

Posted September·

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 二进制求和 python相关的知识,希望对你有一定的参考价值。

class Solution:
    def addBinary(self, a, b):
        """
        :type a: str
        :type b: str
        :rtype: str
        """
        a, b = int(a, 2), int(b, 2)
        return bin(a + b)[2:]


i = Solution()

print(i.addBinary(‘1010‘, ‘1011‘))  

以上是关于leetcode 二进制求和 python的主要内容,如果未能解决你的问题,请参考以下文章

Python描述 LeetCode 67. 二进制求和

Python描述 LeetCode 67. 二进制求和

每日一道 LeetCode (15):二进制求和

LeetCode67-二进制求和(很长的水题)

Leetcode67. 二进制求和(简单模拟)

Leetcode练习(Python):数学类:第67题:二进制求和:给你两个二进制字符串,返回它们的和(用二进制表示)。 输入为 非空 字符串且只包含数字 1 和 0。