会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
SANS
Journey to the mastery of programming
博客园
首页
新随笔
联系
订阅
管理
2020年6月2日
leetcode面试题64. 求1+2+…+n
摘要: 蛮好玩的,很多脑洞,其实都是基础知识 c++ 逻辑运算符替代判断语句+递归 class Solution { public: int sumNums(int n) { n && (n += sumNums(n-1)); return n; } }; 手动展开快乘循环 int qPow(int a,
阅读全文
posted @ 2020-06-02 17:52 XXXSANS
阅读(188)
评论(0)
推荐(0)
编辑
公告