标签:sum problem com pre lang 面试 输出 turn 链接
求 1+2+...+n ,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
示例 1:
输入: n = 3
输出:?6
示例 2:
输入: n = 9
输出:?45
限制:
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/qiu-12n-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
func sumNums(n int) int {
ans := 0
var sum func(int) bool
sum = func(n int) bool {
ans += n
return n > 0 && sum(n-1)
}
sum(n)
return ans
}
标签:sum problem com pre lang 面试 输出 turn 链接
原文地址:https://www.cnblogs.com/wangyiyang/p/13034693.html