mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 09:04:06 +00:00
10 lines
242 B
C++
10 lines
242 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
vector<int> temps{73, 74, 75, 71, 69, 72, 76, 73};
|
|
vector<int> answer{1, 1, 4, 2, 1, 1, 0, 0};
|
|
Solution soln;
|
|
cout << "Found next warmer days correctly? " << soln.test(temps, answer) << endl;
|
|
return 0;
|
|
} |