15 lines
252 B
C++
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
|