Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

11. Container With Most Water #14

Open
Luchanaaaaa opened this issue Feb 21, 2023 · 0 comments
Open

11. Container With Most Water #14

Luchanaaaaa opened this issue Feb 21, 2023 · 0 comments

Comments

@Luchanaaaaa
Copy link
Owner

class Solution {
    public int maxArea(int[] height) {
        int left = 0, right = height.length -1, sum = 0;
        
        while(left < right){
            sum = Math.max(sum, (right - left) * Math.min(height[right], height[left]));
            if(height[right] < height[left]){
                right--;
            }else{
                left++;
            }
        }
        return sum;

    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant