求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
1 # -*- coding:utf-8 -*- 2 class Solution: 3 def Sum_Solution(self, n): 4 return n and n + self.Sum_Solution(n-1) 5 # write code here
Java版代码,leetcode地址:
1 class Solution { 2 public int sumNums(int n) { 3 if(n==0){ 4 return 0; 5 }else{ 6 return n + sumNums(n-1); 7 } 8 } 9 }