FromLeetcodeStatusACDateMar 15, 2024Tags递归回溯子集Difficulty中等Linkhttps://leetcode.cn/problems/subsets-ii/description/题面给你一个整数数组 nums ,其中可能包含重复元素,请你返回该数组所有可能的子集(幂集)。解集 不能 包含重复的子集。返回的解集中,子集可以按 任意顺序 排列。示例 1:示例 2:提示:1 <= nums.length <= 1010 <= nums[i] <= 10 思路 题解