码迷,mamicode.com
首页 >  
搜索关键字:subsets    ( 425个结果
Subsets II
public class Solution { public ArrayList> subsetsWithDup(int[] num) { ArrayList> res = new ArrayList>(); res.add(new ArrayList()); ...
分类:其他好文   时间:2015-04-16 13:53:09    阅读次数:116
Subsets
这道题虽然不用到helper,但是却是那一路的参考code 包括有helper的http://blog.csdn.net/linhuanmars/article/details/24286377public class Solution { public ArrayList> subsets(...
分类:其他好文   时间:2015-04-16 13:44:43    阅读次数:119
leetcode || 90、Subsets II
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
LeetCode 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 contain dupli...
分类:其他好文   时间:2015-04-14 23:20:22    阅读次数:207
Subsets -- leetcode
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
leetcode || 78、Subsets
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
LeetCode --- 90. Subsets II
题目链接: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
LeetCode Subsets
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
Leetcode---Subsets
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
LeetCode78/90 subset I/II
一: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
425条   上一页 1 ... 27 28 29 30 31 ... 43 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!