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

78. Subsets

时间:2018-09-30 20:41:26      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:example   iter   must   duplicate   ret   set   self   type   extend   

Given a set of distinct integers, nums, return all possible subsets (the power set).

Note: The solution set must not contain duplicate subsets.

Example:

Input: nums = [1,2,3]
Output:
[
[3],
[1],
[2],
[1,2,3],
[1,3],
[2,3],
[1,2],
[]]

class Solution:
    def subsets(self, nums):
        """
        :type nums: List[int]
        :rtype: List[List[int]]
        """
        list = []
        for i in range(1,len(nums)+1):
            list.extend(itertools.combinations(nums,i))
        return list

78. Subsets

标签:example   iter   must   duplicate   ret   set   self   type   extend   

原文地址:https://www.cnblogs.com/bernieloveslife/p/9733242.html

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