码迷,mamicode.com
首页 > 其他好文 > 详细

【leetcode 简单】 第八十七题 两整数之和

时间:2018-08-25 11:22:56      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:ret   tco   com   turn   http   def   strong   简单   span   

不使用运算符 +-,计算两整数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

【leetcode 简单】 第八十七题 两整数之和

标签:ret   tco   com   turn   http   def   strong   简单   span   

原文地址:https://www.cnblogs.com/flashBoxer/p/9532674.html

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