Different Ways to Add Parentheses
Given a string of numbers and operators, return all possible results from computing all the different possible ways to group numbers and operators. The valid ope...
分类:
其他好文 时间:
2015-08-17 12:02:53
阅读次数:
142
DescriptionA subsequence of a given sequence is the given sequence with some elements (possible none) left out. Given a sequence X = another sequence....
分类:
其他好文 时间:
2015-08-16 22:41:13
阅读次数:
122
leetcode - String to Integer (atoi)Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a chal...
分类:
其他好文 时间:
2015-08-16 21:06:40
阅读次数:
88
Palindrome Partitioning
Given a string s, partition s such that every substring of the partition is a palindrome.
Return all possible palindrome partitioning of s.
For example, given s = "a...
分类:
其他好文 时间:
2015-08-16 18:22:35
阅读次数:
102
Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ...
分类:
其他好文 时间:
2015-08-16 12:10:15
阅读次数:
114
Next Permutation
Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.
If such arrangement is not possible, it must rearrange it as...
分类:
其他好文 时间:
2015-08-16 00:44:09
阅读次数:
97
Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ...
分类:
其他好文 时间:
2015-08-15 21:28:06
阅读次数:
116
Subsets IIGiven a collection of integers that might contain duplicates,nums, return all possible subsets.Note:Elements in a subset must be in non-desc...
分类:
编程语言 时间:
2015-08-15 21:21:33
阅读次数:
178
SubsetsGiven a set of distinct integers,nums, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set m...
分类:
编程语言 时间:
2015-08-15 21:18:18
阅读次数:
245
Description:A subsequence of a given sequence is the given sequence with some elements (possible none) left out. Given a sequence X = another sequenc....
分类:
其他好文 时间:
2015-08-15 18:05:44
阅读次数:
104