90. 子集Ⅱ
| 2024-3-15
0  |  阅读时长 0 分钟
From
Leetcode
Status
AC
Date
Mar 15, 2024
Tags
递归
回溯
子集
Difficulty
中等

题面

给你一个整数数组 nums ,其中可能包含重复元素,请你返回该数组所有可能的
子集(幂集)。
解集 不能 包含重复的子集。返回的解集中,子集可以按 任意顺序 排列。
示例 1:
示例 2:
提示:
  • 1 <= nums.length <= 10
  • 10 <= nums[i] <= 10
 

思路

notion image
 

题解

Loading...
目录