注册一亩三分地论坛,查看更多干货!
您需要 登录 才可以下载或查看附件。没有帐号?注册账号 
x
1. Given an integer array nums of unique elements, return all possible
subsets (the power set).
The solution set must not contain duplicate subsets.r.
Example 1:
Input: nums = [1,2, 2]
Output: [[],[1],[1,2],[1,2,2],[2],[2,2]] |