面试必考精华版Leetcode11. 盛最多水的容器

题目:

面试必考精华版Leetcode11. 盛最多水的容器_第1张图片


 

代码(首刷自解 day6):

class Solution {
public:
    int maxArea(vector& height) {
        int n=height.size();
        if(n<2) return 0;
        
        int left=0,right=n-1;
        int res=0;
        while(left

        用暴力果然会超时。。。

你可能感兴趣的:(#,leetcode,---medium,前端,算法,javascript)