题目描述:
给你一个整数数组 nums
,数组中的元素 互不相同 。返回该数组所有可能的
子集
(幂集)。
解集 不能 包含重复的子集。你可以按 任意顺序 返回解集。
示例 1:
输入:nums = [1,2,3] 输出:[[],[1],[2],[1,2],[3],[1,3],[2,3],[1,2,3]]
示例 2:
输入:nums = [0] 输出:[[],[0]]
提示:
1 <= nums.length <= 10
-10 <= nums[i] <= 10
nums
中的所有元素 互不相同
我的作答:
就是path每变化一次,保存一次。。
class Solution(object):
def subsets(self, nums):
"""
:type nums: List[int]
:rtype: List[List[int]]
"""
def backtracking(s, start, path, result):
result.append(path[:]) #path[:]
if start>len(s)-1:
return
for i in range(start, len(s)):
path.append(s[i])
backtracking(s, i+1, path, result)
path.pop()
result = []
backtracking(nums, 0, [], result)
return result
标签:nums,List,随想录,76,result,path,start,backtracking,刷题 From: https://blog.csdn.net/Aerochacha/article/details/144555248