Difficult:Medium
題目
Given an integer array nums of unique elements, return all possible subsets (the power set).
The solution set must not contain duplicate subsets. Return the solution in any order.
翻譯
給定一個包含唯一元素的整數數組 nums,返回所有可能的子集(冪集)。
解決方案集不得包含重複的子集。以任何順序返回解決方案。
範例
Example 1
1 | Input: nums = [1,2,3] |
Example 2
1 | Input: nums = [0] |
解題思路
1.依動態編成求解
Solution
Code 1 :
1 | var subsets = function(nums) { |