Skip to content

Latest commit

 

History

History
executable file
·
26 lines (21 loc) · 432 Bytes

File metadata and controls

executable file
·
26 lines (21 loc) · 432 Bytes

题目

Given a set of distinct integers, nums, return all possible subsets.

Note: The solution set must not contain duplicate subsets.

For example, If nums = [1,2,3], a solution is:

[
  [3],
  [1],
  [2],
  [1,2,3],
  [1,3],
  [2,3],
  [1,2],
  []
]

解题思路

run一下,观察输出结果的队形。再用递归的方式解题。

见程序注释