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