我用9寸 iPad Pro 替换掉了 iPad mini 2 这一年,我越来越少坐在办公室里长时间写东西了,倒是在旅途上、地铁站边的啤酒馆里、楼旁新开花的树下,更让我容易忘记...
NextCapital , 一家在芝加哥的经融startup,18年刚刚完成 C轮融资。 17年底海投,之后收到OA,OA 有四题,1 扫雷(for , nested if...
创造财富的要素: 梦想,目标区,价值观,策略 承担责任意味着事情在自己的掌控中 储蓄的重要性:生活水平会因为收入的上涨而上涨,所以收入上涨并不会使你致富。储蓄才会。储蓄致富策...
在之前的文章node入门场景之——爬虫已经介绍过最简单的node爬虫实现,本文在原先的基础上更进一步,探讨一下如何绕过登录,爬取登录区内的数据 目录 理论基础如何维持登录态浏...
找到一种Trie 的实现:简单易懂,高效 trie适合使用的情况
bisect.bisect_left(a,x,lo=0,hi=len(a))¶ Locate the insertion point forxinato maintain s...
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix ...
Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in ...
Given a singly linked list, group all odd nodes together followed by the even nodes. Pl...
Given a binary search tree, write a function kthSmallest to find the kth smallest eleme...
Examples: Given"abcabcbb", the answer is"abc", which the length is 3. Given"bbbbb", the...
tag 上说是 tree 类型的题目,但我觉得这更像是一个 backtracking的题目 解法: 因为题目要求所有比node.val大得值都要加上去,而这是一颗BST,所以...
Example 1: Input:nums1= [4,1,2],nums2= [1,3,4,2]. Output:[-1,3,-1] Explanation:For numb...
Input:2 Output:2 Explanation: The first beautiful arrangement is [1, 2]: Number at the ...
Example 1: Input:[3, 1, 4, 1, 5], k = 2 Output:2 Explanation:There are two 2-diff pairs...
Example 1: Input:nums is [1, 1, 1, 1, 1], S is 3.Output:5Explanation:-1+1+1+1+1 = 3+1-1...