leetcode/include/s0739_daily_temperatures.hpp

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