【leetcode 簡單】 第八十七題 兩整數之和

丁壯發表於2018-08-25

不使用運算子 +-,計算兩整數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

相關文章