给你一个整数数组 nums ,数组中的元素 互不相同 。返回该数组所有可能的子集(幂集)。
def subsets(nums):
res = []
self.dfs(nums, 0, res, [])
return res
def dfs(nums, index, res, path):
res.append(path)
for i in range(index, len(nums)):
self.dfs(nums, i + 1, res, path + [nums[i]])
标签:index,nums,--,res,dfs,Python,子集,数组,path
From: https://blog.51cto.com/u_15944471/6193355