leetcode/include/s0011_container_with_most_water.hpp
Sainnhe Park 090003819d
All checks were successful
continuous-integration/drone/push Build is passing
s0011
2022-11-03 15:22:56 +08:00

14 lines
195 B
C++

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