不使用运算符 +-,计算两整数a 、b之和。

示例:
若 a = 1 ,b = 2,返回 3。

class Solution:
    def getSum(self, a, b):
        """
        :type a: int
        :type b: int
        :rtype: int
        """
      #  return sum([a,b])
        first=a^b
        second=(a&b)<<1
        return sum([first,second])

参考:https://www.jianshu.com/p/3bdba23a0401

内容来源于网络如有侵权请私信删除
你还没有登录,请先登录注册
  • 还没有人评论,欢迎说说您的想法!