mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 07:24:07 +00:00
10 lines
205 B
C++
10 lines
205 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
vector<int> piles{30, 23, 11, 4, 20};
|
|
int h = 5, answer = 30;
|
|
Solution soln;
|
|
cout << "Found minimum k correctly? " << soln.test(piles, h, answer) << endl;
|
|
return 0;
|
|
} |