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