Sainnhe Park
090003819d
All checks were successful
continuous-integration/drone/push Build is passing
14 lines
195 B
C++
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
|