mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 09:04:06 +00:00
8 lines
192 B
C++
8 lines
192 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
class Solution
|
|
{
|
|
public:
|
|
vector<int> dailyTemperatures(vector<int> &temperatures);
|
|
bool test(vector<int> &temperatures, vector<int> &answer);
|
|
}; |