美文网首页
371. Sum of Two Integers 两整数之和

371. Sum of Two Integers 两整数之和

作者: singed | 来源:发表于2018-10-08 15:26 被阅读0次

    链接

    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 两整数之和

          本文链接:https://www.haomeiwen.com/subject/xqkjaftx.html