leetcode/include/s0011_container_with_most_w...

14 lines
200 B
C++

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