47.1+2+3+...+n(python)
题目描述
求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 # write code here 5 return 1 if n==1 else n+self.Sum_Solution(n-1)
2019-12-27 17:01:06