Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: " ...
分类:
其他好文 时间:
2018-03-03 18:09:57
阅读次数:
112
Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telepho ...
分类:
其他好文 时间:
2018-03-03 10:54:39
阅读次数:
220
1.题目描述 Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the ...
分类:
其他好文 时间:
2018-02-27 01:22:53
阅读次数:
179
Find all possible combinations of k positive numbers that add up to a number n,each combination should be a unique set of numbers. ...
分类:
其他好文 时间:
2018-02-24 20:45:26
阅读次数:
233
[抄题]: Given a digit string excluded 01, return all possible letter combinations that the number could represent. A mapping of digit to letters (just l ...
分类:
其他好文 时间:
2018-02-20 16:23:15
阅读次数:
142
Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be ... ...
分类:
其他好文 时间:
2018-01-30 00:27:22
阅读次数:
149
Given a set of candidate numbers (C) (without duplicates) and a target number (T), find all unique combinations in C where the candidate numbers sums ...
分类:
其他好文 时间:
2018-01-25 23:11:12
阅读次数:
176
Given two integers n and k, return all possible combinations of k numbers out of 1 ... n. For example,If n = 4 and k = 2, a solution is: [ [2,4], [3,4 ...
分类:
其他好文 时间:
2018-01-25 23:10:54
阅读次数:
194
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T. Each num ...
分类:
其他好文 时间:
2018-01-25 23:09:56
阅读次数:
175
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: [... ...
分类:
其他好文 时间:
2018-01-23 23:14:07
阅读次数:
129