s0491
All checks were successful
ci/woodpecker/push/test Pipeline was successful

This commit is contained in:
2023-02-03 13:11:13 +08:00
parent e347731fef
commit 3171c30f82
3 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#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