码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 78. 子集

时间:2020-11-08 16:53:04      阅读:16      评论:0      收藏:0      [点我收藏+]

标签:lis   ret   src   arraylist   ++   res   color   get   etc   

技术图片

 

 

 

class Solution {
    public List<List<Integer>> subsets(int[] nums) {
        List<List<Integer>> res = new ArrayList<>();
        res.add(new ArrayList<>());
        for(int i = 0; i < nums.length; i++){
            int len = res.size();
            for(int j = 0; j < len; j++){
                List<Integer> temp = new ArrayList<>(res.get(j));
                temp.add(nums[i]);
                res.add(temp);
            }
        }
        return res;
    }
}

 

LeetCode 78. 子集

标签:lis   ret   src   arraylist   ++   res   color   get   etc   

原文地址:https://www.cnblogs.com/Xycdada/p/13926953.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!