leetcode/include/s0491_non_decreasing_subseq...

15 lines
252 B
C++

#ifndef S0491_NON_DECREASING_SUBSEQUENCES_HPP
#define S0491_NON_DECREASING_SUBSEQUENCES_HPP
#include <unordered_map>
#include <vector>
using namespace std;
class S0491 {
public:
vector<vector<int>> findSubsequences(vector<int>& nums);
};
#endif