leetcode/include/s0739_daily_temperatures.hpp

15 lines
227 B
C++
Raw Permalink Normal View History

2022-12-16 07:08:10 +00:00
#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