上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 19 下一页
摘要: 原题链接: "https://leetcode.com/problems/count primes/description/" 这道题目数学相关性比较强,忘记什么是质数的同学估计就得先学习下质数了,然后就是思考思路了,我思考了两种方法,就是提示里面的前两种提示啦,不过效率上都不过关,然后一路跟着提示 阅读全文
posted @ 2018-04-02 20:48 optor 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/remove linked list elements/description/" 实现如下: 阅读全文
posted @ 2018-04-02 12:15 optor 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/happy number/description/" 实现如下: 阅读全文
posted @ 2018-04-02 11:41 optor 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/house robber/description/" 这道题目有意思哦: Java / Created by clearbug on 2018/2/26. / public class Solution { public st 阅读全文
posted @ 2018-04-02 10:46 optor 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/number of 1 bits/description/" 实现如下: 参考 "http://www.cnblogs.com/optor/p/8688394.html" 阅读全文
posted @ 2018-04-01 22:14 optor 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/reverse bits/description/" 实现如下: 阅读全文
posted @ 2018-04-01 21:27 optor 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/k diff pairs in an array/description/" 这道题目很有意思哦,但是我始终没有写出实现来,下面是抄袭讨论区的答案啦: 明天下午就要去新浪面试了,还有一大堆东西没有复习,晚上一个小时看了几集《银 阅读全文
posted @ 2018-03-25 22:20 optor 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/max consecutive ones/description/" 这道题目级别为easy,实际做起来也是so easy: 阅读全文
posted @ 2018-03-25 18:19 optor 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/find all numbers disappeared in an array/description/" 我的解答: Java import java.util.ArrayList; import java.util.Li 阅读全文
posted @ 2018-03-25 18:10 optor 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/lowest common ancestor of a binary tree/description/" 代码实现如下: 阅读全文
posted @ 2018-03-25 17:24 optor 阅读(107) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 19 下一页