美文网首页
LeetCode面试64

LeetCode面试64

作者: 锦绣拾年 | 来源:发表于2020-05-15 16:17 被阅读0次
求 `1+2+...+n` ,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。

 

示例 1:

输入: n = 3
输出: 6
示例 2:

输入: n = 9
输出: 45
 

限制:

1 <= n <= 10000

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/qiu-12n-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

&&有一个截断判断功能,条件不满足,就不会进行后面的判断
因此相当于递归,然后这里把它当作if用了

class Solution {
public:
    
    int sumNums(int n) {
        //这是我见过很搞笑很机智又很奇怪的题
        int res=n;
        bool x = n > 1 &&(res+=sumNums(n-1))>0;//保证了n<1不会再递归
        // res += n;
        return res;

        
    }
};

相关文章

网友评论

      本文标题:LeetCode面试64

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