371. Sum of Two Integers 两整数之和

链接

https://leetcode-cn.com/problems/sum-of-two-integers/description/

要求

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

输入: a = 1, b = 2
输出: 3

输入: a = -2, b = 3
输出: 1

思路

使用sum函数

代码

执行用时:48 ms

class Solution:
    def getSum(self, a, b):
        return sum([a, b])

你可能感兴趣的:(371. Sum of Two Integers 两整数之和)