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

This commit is contained in:
2022-12-16 15:45:21 +08:00
parent ac57b13edb
commit 39bb8ffc36
4 changed files with 83 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#ifndef S0496_NEXT_GREATER_ELEMENT_I_HPP
#define S0496_NEXT_GREATER_ELEMENT_I_HPP
#include <vector>
#include <stack>
#include <unordered_map>
using namespace std;
class S0496 {
public:
vector<int> nextGreaterElement(vector<int>& nums1, vector<int>& nums2);
};
#endif