上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 19 下一页
摘要: 原题链接: "https://leetcode.com/problems/customers who never order/description/" 做完这道题目我才发现,我跟不就不懂 in, exists, not in, not exists,exists 用都不会用: 阅读全文
posted @ 2018-03-22 12:34 optor 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/duplicate emails/description/" 这么简单的题目,我竟然都不会。。。sql 玩的不够溜啊。然后就去看了官方答案吧: 两种方法: 阅读全文
posted @ 2018-03-22 12:14 optor 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/employees earning more than their managers/description/" 还是一道数据库题目。我的实现如下: 官方解答: 1. 不用连接查询,直接查询两张表,效率要差一点; 2. 就是我 阅读全文
posted @ 2018-03-22 11:00 optor 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/second highest salary/description/" 又是一道数据库题目。我写下了如此的实现: 然而,有些情况并不能运行正确。无奈之下,去看官方解答吧: 官方答案就是牛逼啊,我的 sql 玩的还是不够溜。。。 阅读全文
posted @ 2018-03-22 10:50 optor 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/combine two tables/description/" 刷着算法题忽然乱入了一道数据库题目,而且灰常简单: 阅读全文
posted @ 2018-03-22 10:19 optor 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/factorial trailing zeroes/description/" 这道题目虽然级别为easy,但是刚开始我并没有读懂题目,英文不好就是渣。。后来百度了下总算读明白题目了,然而还是不会做。最后还是百度了下看了下别人 阅读全文
posted @ 2018-03-22 10:15 optor 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/excel sheet column number/description/" 这题没啥技术含量,直接就是实现: Java / Created by clearbug on 2018/2/26. / public class 阅读全文
posted @ 2018-03-22 09:40 optor 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/majority element/description/" 这道题目之前《剑指Offer》见到过,这次就直接能想起书上写的第二种较为简单的方法了: 第一种方法,就是利用快速排序的思想来解决啦! 官方答案 1. 双层循环暴力法 阅读全文
posted @ 2018-03-21 18:41 optor 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/excel sheet column title/description/" 这道题目虽然是easy级别的,初看也以为很简单,但是我并未能写出一个完整的实现来。最后,还是抄袭别人的答案: 阅读全文
posted @ 2018-03-21 18:23 optor 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/two sum ii input array is sorted/description/" 这道题目蛮有意思的,有点难度哦: Java import java.util.Arrays; / Created by clearb 阅读全文
posted @ 2018-03-21 17:10 optor 阅读(109) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 19 下一页