标签: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
标签:example iter must duplicate ret set self type extend
原文地址:https://www.cnblogs.com/bernieloveslife/p/9733242.html