码迷,mamicode.com
首页 > 编程语言 > 详细

leetcode 二进制求和 python

时间:2018-10-17 14:50:21      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:solution   div   bin   def   add   highlight   sel   leetcode   binary   

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

标签:solution   div   bin   def   add   highlight   sel   leetcode   binary   

原文地址:https://www.cnblogs.com/liang3044/p/9803306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!