15 lines
227 B
C++
15 lines
227 B
C++
|
#ifndef S0739_DAILY_TEMPERATURES_HPP
|
||
|
#define S0739_DAILY_TEMPERATURES_HPP
|
||
|
|
||
|
#include <vector>
|
||
|
#include <stack>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class S0739 {
|
||
|
public:
|
||
|
vector<int> dailyTemperatures(vector<int>& temperatures);
|
||
|
};
|
||
|
|
||
|
#endif
|