mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 10:34:07 +00:00
10 lines
210 B
C++
10 lines
210 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
vector<int> costs{1, 100, 1, 1, 1, 100, 1, 1, 100, 1};
|
|
int answer = 6;
|
|
Solution soln;
|
|
cout << "Found min cost correctly? " << soln.test(costs, answer) << endl;
|
|
return 0;
|
|
} |