Sainnhe Park
ac57b13edb
All checks were successful
continuous-integration/drone/push Build is passing
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
|