leetcode/include/s0011_container_with_most_w...

14 lines
200 B
C++
Raw Permalink Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0011_CONTAINER_WITH_MOST_WATER_HPP
#define S0011_CONTAINER_WITH_MOST_WATER_HPP
2022-11-03 07:22:56 +00:00
#include <vector>
using namespace std;
2022-11-30 10:20:36 +00:00
class S0011 {
2022-11-03 07:22:56 +00:00
public:
int maxArea(vector<int>& height);
};
#endif