标题:Jump Game II通过率:24.5难度:难Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the a...
分类:
其他好文 时间:
2015-03-29 17:47:45
阅读次数:
133
标题:Two Sum通过率:17.9%难度:中等Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should retu...
分类:
其他好文 时间:
2015-03-28 21:32:14
阅读次数:
110
标题:Combination Sum II通过率:25.1%难度:中等Given a collection of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the cand...
分类:
其他好文 时间:
2015-03-20 20:07:07
阅读次数:
111
标题:Subsets II通过率:27.5难度:中等Given a collection of integers that might contain duplicates,S, return all possible subsets.Note:Elements in a subset must b...
分类:
其他好文 时间:
2015-03-16 21:04:46
阅读次数:
116
标题:Combinations通过率:30.5%难度:中等Given two integersnandk, return all possible combinations ofknumbers out of 1 ...n.For example,Ifn= 4 andk= 2, a solution...
分类:
其他好文 时间:
2015-03-16 16:20:45
阅读次数:
101
标题:Subsets通过率:28.2%难度:中等Given a set of distinct integers,S, return all possible subsets.Note:Elements in a subset must be in non-descending order.The ...
分类:
其他好文 时间:
2015-03-16 16:20:18
阅读次数:
82
标题:Palindrome Partitioning通过率:26.3%难度:中等Given a strings, partitionssuch that every substring of the partition is a palindrome.Return all possible pali...
分类:
其他好文 时间:
2015-03-16 16:07:04
阅读次数:
121
标题:Binary Tree Zigzag Level Order Traversal通过率:26.5%难度:中等Given a binary tree, return thezigzag level ordertraversal of its nodes' values. (ie, from le...
分类:
其他好文 时间:
2015-03-14 15:05:47
阅读次数:
151
标题:Populating Next Right Pointers in Each Node II通过率:31.7%难度:难Follow up for problem "Populating Next Right Pointers in Each Node".What if the given tr...
分类:
其他好文 时间:
2015-03-13 14:00:13
阅读次数:
153
标题:Populating Next Right Pointers in Each Node通过率:36.1%难度:中等Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *r...
分类:
其他好文 时间:
2015-03-13 13:54:40
阅读次数:
112