leetcode/include/s0011_container_with_most_water.hpp
2022-11-21 21:15:56 +08:00

14 lines
203 B
C++

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