8 lines
153 B
C++

#include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
int maxArea(vector<int> &height);
bool test(vector<int> &height, int answer);
};