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