mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 09:44:06 +00:00
10 lines
196 B
C++
10 lines
196 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
vector<int> prices{7, 1, 5, 3, 6, 4};
|
|
int answer = 5;
|
|
Solution soln;
|
|
cout << "Found max profit correctly? " << soln.test(prices, answer) << endl;
|
|
return 0;
|
|
} |