Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 672 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 672 Bytes

| English | 简体中文 |

题目描述

给定一个可能包含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。

说明:解集不能包含重复的子集。

示例:

输入: [1,2,2]
输出:
[
  [2],
  [1],
  [1,2,2],
  [2,2],
  [1,2],
  []
]

相关话题

相似题目