🟢 剑指 Offer 64. 求1+2+…+n
LeetCode 提示
题目难度 简单
原题链接 🔗 leetcode
#
解析 1.md要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)
但你可以用加法(草
你也可以用and or not(草
#
题解 1.pyclass Solution: def sumNums(self, n: int) -> int: return n and (self.sumNums(n-1) + n)