leetcode
「已注销」
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
LEETCODE 626. 换座位
Create table If Not Exists seat(id int, student varchar(255)); Truncate table seat; insert into seat (id, student) values ('1', 'Abbot'); insert into seat (id, student) values ('2', 'Doris'); insert i...原创 2018-05-31 02:24:24 · 956 阅读 · 0 评论 -
LEETCODE 3的幂 2的幂 N的幂 问题
//n^m幂 function isPowerOfNum(n,m) { while(n>m && n==parseInt(n)){ n /= m; } if(n==m||n==1) return true; return false; }原创 2018-05-31 10:57:37 · 413 阅读 · 0 评论
分享