Skip to content

Latest commit

 

History

History
40 lines (35 loc) · 838 Bytes

子集.md

File metadata and controls

40 lines (35 loc) · 838 Bytes

给你一个整数数组 nums ,数组中的元素 互不相同 。返回该数组所有可能的子集(幂集)。

解集 不能 包含重复的子集。你可以按 任意顺序 返回解集。

示例 1:

输入:nums = [1,2,3]
输出:[[],[1],[2],[1,2],[3],[1,3],[2,3],[1,2,3]]

示例 2:

输入:nums = [0]
输出:[[],[0]]

题解

/**
 * @param {number[]} nums
 * @return {number[][]}
 */
var subsets = function(nums) {
  const res = []
  const dfs = (target, index) => {
    // target是引用
    res.push([...target])
    for (let i = index; i < nums.length; i++) {
      target.push(nums[i])
      // 利用索引来控制去重
      dfs(target, i + 1)
      target.pop()
    }
  }
  dfs([], 0)
  return res
};