1 Star 1 Fork 0

bywuuu/pyTest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
求1+2+3+...+n.py 643 Bytes
一键复制 编辑 原始数据 按行查看 历史
bywuuu 提交于 2019-12-13 16:42 . add
# 求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
def Sum_Solution(n):
return sum(list(range(1,n+1)))
# print(Sum_Solution(100))
# 方法2:使用短路算法,这个方法要注意,python中逻辑运算and的计算方法是 a and b,如果a是false,那么返回a,如果a是true,返回b
# 当递归到0的时候,a是false,所以最后就成了递归终止条件了
def Sum_Solution1(n):
ans = n
temp = ans and Sum_Solution(n-1)
ans = ans+temp
return ans
# print(Sum_Solution1(100))
a = 10
b = 15
temp = a and b
print(temp)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bywuuu/pyTest.git
[email protected]:bywuuu/pyTest.git
bywuuu
pyTest
pyTest
master

搜索帮助