leetcode/include/s0491_non_decreasing_subsequences.hpp
Sainnhe Park 3171c30f82
All checks were successful
ci/woodpecker/push/test Pipeline was successful
s0491
2023-02-03 13:11:13 +08:00

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