leetcode/include/s0011_container_with_most_water.hpp

14 lines
203 B
C++
Raw 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;
class Solution {
public:
int maxArea(vector<int>& height);
};
#endif