s0503
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-12-16 16:12:04 +08:00
parent 676611e233
commit 1775c33c9f
4 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef S0503_NEXT_GREATER_ELEMENT_II_HPP
#define S0503_NEXT_GREATER_ELEMENT_II_HPP
#include <vector>
#include <stack>
using namespace std;
class S0503 {
public:
vector<int> nextGreaterElements(vector<int>& nums);
};
#endif