题解 | #求1+2+3+...+n#

求1+2+3+...+n

http://www.nowcoder.com/practice/7a0da8fc483247ff8800059e12d7caf1

public class Solution {
    int[] nums = {0};
    public int Sum_Solution(int n) {
        try {
         return nums[n];
        } catch(Exception e) {
           return Sum_Solution(n - 1) + n;
        }
    }
}

拿下

全部评论

相关推荐

2024-12-29 15:37
已编辑
西华大学 图像识别
程序员牛肉:去不了,大厂算法卡学历吧
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务