491. 非递减子序列
| 2024-3-16
0  |  阅读时长 0 分钟
From
Leetcode
Status
AC
Date
Mar 16, 2024
Tags
递归
回溯
子集
Difficulty
中等

题面

给你一个整数数组 nums ,找出并返回所有该数组中不同的递增子序列,递增子序列中 至少有两个元素 。你可以按 任意顺序 返回答案。
数组中可能含有重复元素,如出现两个整数相等,也可以视作递增序列的一种特殊情况。
示例 1:
示例 2:
提示:
  • 1 <= nums.length <= 15
  • 100 <= nums[i] <= 100
 

思路

不能进行排序,用set去树层的重,判断是递增l
notion image

题解

 
Loading...
目录