链接
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])
网友评论