摘要: https://blog.csdn.net/lmh_19941113/article/details/87979419 阅读全文
posted @ 2020-04-22 13:59 两小无猜 阅读(220) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/m0_37796683/article/details/90702095 阅读全文
posted @ 2020-04-22 12:41 两小无猜 阅读(134) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/cd3557b1a474 阅读全文
posted @ 2020-04-22 12:40 两小无猜 阅读(120) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/chb_1_2/article/details/90468890 阅读全文
posted @ 2020-04-22 12:37 两小无猜 阅读(307) 评论(0) 推荐(0) 编辑
摘要: https://qmuiteam.com/android/ 阅读全文
posted @ 2020-04-22 12:02 两小无猜 阅读(233) 评论(0) 推荐(0) 编辑
摘要: http://www.jcodecraeer.com/a/opensource/2017/0630/8137.html 阅读全文
posted @ 2020-04-22 11:59 两小无猜 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/gjm15881133824/article/details/73742219 阅读全文
posted @ 2020-04-22 11:57 两小无猜 阅读(515) 评论(0) 推荐(0) 编辑
摘要: 描述 旋转字符串 给定一个字符串(以字符数组的形式给出)和一个偏移量,根据偏移量原地旋转字符串(从左向右旋转)。 挑战 在数组上原地旋转,使用O(1)的额外空间 说明 原地旋转意味着你要在s本身进行修改。你不需要返回任何东西。 注意事项 offset >= 0 the length of str > 阅读全文
posted @ 2020-04-22 09:51 两小无猜 阅读(829) 评论(0) 推荐(0) 编辑
摘要: 描述 水仙花数的定义是,这个数等于他每一位数上的幂次之和 见维基百科的定义 比如一个3位的十进制整数153就是一个水仙花数。因为 153 = 13 + 53 + 33。 而一个4位的十进制数1634也是一个水仙花数,因为 1634 = 14 + 64 + 34 + 44。 给出n,找到所有的n位十进 阅读全文
posted @ 2020-04-22 08:55 两小无猜 阅读(534) 评论(0) 推荐(0) 编辑