mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 11:44:06 +00:00
10 lines
217 B
C++
10 lines
217 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
vector<int> heights = {1, 8, 6, 2, 5, 4, 8};
|
|
int answer = 40;
|
|
Solution soln;
|
|
cout << "Found largest container size correctly? " << soln.test(heights, answer) << endl;
|
|
return 0;
|
|
} |