16 lines
274 B
C++
16 lines
274 B
C++
|
#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
|