ftalm

Monday, May 30, 2016

一切move on

›
没事,给自己几个关于cs career 的目标 1. leetcode 2. system design 3. aws certificate
Thursday, March 24, 2016

非常不开心

›
我忍不住了,在这里我做的根本就是没用功。。。杀虫用牛刀。。。 我要忍着,要发泄就这里发泄。争取加速换工作
Wednesday, March 2, 2016

总结03.02

›
1. 之前 有一些烦恼,不应该庸人自扰,什么事是对的 什么事是错的 要清楚, 不能让emotion和冲动战胜理智。要忍和斩断不好的念头。 2. 工作里面 要耐心听讲和不要太agressive, 要感恩别人对自己的帮助 和 耐心
Tuesday, January 12, 2016

[leetcode]Find Minimum in Rotated Sorted Array II

›
这种题off by one error太容易出了.. 到目前为止除了仔细检查和写好run code找error和记code之外没找到好办法 public class Solution { public int findMin ( int [] nums) { ...
Sunday, December 27, 2015

[leetcode]Count of Smaller Numbers After Self

›
用BST加count就可以解决 public class Solution { public List <Integer> countSmaller( int [] nums) { LinkedList <Integer...
Thursday, December 24, 2015

[leetcode] Kth Largest Element in an Array

›
用Quick Select...其实可以在原array上修改...不过可能code会复杂点。。 直接straight forward 建立新array做 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 ...
Wednesday, December 23, 2015

[leetcode]Different Ways to add parentheses

›
divide and conquer, 总是分成两半... 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 public class Solution...
›
Home
View web version
Powered by Blogger.