#ifndef S0011_CONTAINER_WITH_MOST_WATER_HPP
#define S0011_CONTAINER_WITH_MOST_WATER_HPP
#include <vector>
using namespace std;
class Solution {
public:
int maxArea(vector<int>& height);
};
#endif