public class Solution { public ArrayList> subsetsWithDup(int[] num) { ArrayList> res = new ArrayList>(); res.add(new ArrayList()); ...
分类:
其他好文 时间:
2015-04-16 13:53:09
阅读次数:
116
这道题虽然不用到helper,但是却是那一路的参考code 包括有helper的http://blog.csdn.net/linhuanmars/article/details/24286377public class Solution { public ArrayList> subsets(...
分类:
其他好文 时间:
2015-04-16 13:44:43
阅读次数:
119
problem:
Given a collection of integers that might contain duplicates, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set mu...
分类:
其他好文 时间:
2015-04-15 11:29:03
阅读次数:
211
Given a collection of integers that might contain duplicates, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain dupli...
分类:
其他好文 时间:
2015-04-14 23:20:22
阅读次数:
207
Given a set of distinct integers, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets.
For exa...
分类:
其他好文 时间:
2015-04-13 16:46:47
阅读次数:
130
problem:
Given a set of distinct integers, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate sub...
分类:
其他好文 时间:
2015-04-10 11:35:42
阅读次数:
181
题目链接:Subsets II
Given a collection of integers that might contain duplicates, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not ...
分类:
其他好文 时间:
2015-04-07 23:33:25
阅读次数:
156
Given a set of distinct integers, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets.
For exa...
分类:
其他好文 时间:
2015-04-07 21:38:13
阅读次数:
138
Given a set of distinct integers, S , return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets.
For exam...
分类:
其他好文 时间:
2015-04-07 10:05:03
阅读次数:
127
一:Unique paths I
题目:
Given a set of distinct integers, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplic...
分类:
其他好文 时间:
2015-04-06 15:44:07
阅读次数:
122