题目描述
求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
分析:直接调用python里的sum函数
class Solution:
def Sum_Solution(self, n):
return sum(range(0,n+1))
本文提供了一种使用Python内置函数解决求1到n之和的方法,避免了传统循环和条件判断语句的使用。
分析:直接调用python里的sum函数
class Solution:
def Sum_Solution(self, n):
return sum(range(0,n+1))

被折叠的 条评论
为什么被折叠?