leetcode 简单 第八十七题 两整数之和
Posted 丁壮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 简单 第八十七题 两整数之和相关的知识,希望对你有一定的参考价值。
不使用运算符 +
和-
,计算两整数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 简单 第八十七题 两整数之和的主要内容,如果未能解决你的问题,请参考以下文章