leetcode/include/s0739_daily_temperatures.hpp
Sainnhe Park ac57b13edb
All checks were successful
continuous-integration/drone/push Build is passing
s0739
2022-12-16 15:08:10 +08:00

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