Skip to content
Programmingoneonone - Logo
Programmingoneonone
  • Engineering Subjects
    • Internet of Things (IoT)
    • Computer System Architecture
    • Microprocessor
    • Digital Communication
    • Human Values
  • Programming Tutorials
    • C Programming
    • Data structures and Algorithms
    • 100+ Java Programs
    • 100+ C Programs
    • 100+ C++ Programs
  • Solutions
    • HackerRank
      • Algorithms Solutions
      • C solutions
      • C++ solutions
      • Java solutions
      • Python solutions
      • Data Structures Solutions
    • Leetcode Solutions
    • HackerEarth Solutions
  • Work with US
Programmingoneonone - Logo
Programmingoneonone

Leetcode container with most water problem solution

YASH PAL, 31 July 202418 January 2026

In this Leetcode container with the most water problem solutions, we have Given n non-negative integers a1, a2, …, an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line I are at (i, ai) and (i, 0). we need to find two lines, which together with the x-axis form a container, such that the container contains the most water.

Leetcode container with most water problem solution

Leetcode container with most water problem solution in Python.

class Solution:
    def maxArea(self, height: List[int]) -> int:
        largest = 0
        l, r = 0, len(height) - 1
        while l < r:
            area = (r- l) * min(height[l], height[r])
            largest = max(largest, area)
            if height[l] < height[r]:
                l += 1
            else:
                r -= 1
        return largest

Container with most water problem solution in Java.

public class Solution {
public int maxArea(int[] height) {
    int maxarea=0;
    int temparea=0;
    int m=0,n=height.length-1;
    while(m!=n){
        if(height[m]<height[n]){
            temparea=height[m]*(n-m);
            m++;
        }
        else{
            temparea=height[n]*(n-m);
            n--;
        }
        if(maxarea<temparea) maxarea=temparea;
    }
    return maxarea;
}
}

Problem solution in C++.

class Solution {
public:
    int maxArea(vector<int>& height) 
    {
        int res=0,left=0,right=height.size()-1;
        while(left<right)
        {
            int lower=height[height[left]<height[right]?left++:right--];
            res=max(res,(right-left+1)*lower);
        }
        return res;
    }
};

Problem solution in C.

int min(int a, int b) {
    return((a < b) ? a : b);
}
int maxArea(int* height, int heightSize) {
    int maxArea=0, area;
    int i, j, w, h;
    
    for (i = 0, j = heightSize-1; i < j; ) {
        h = min(height[j], height[i]);
        w = j-i;
        area = h * w;
        maxArea = (area > maxArea) ? area : maxArea;
        (height[i] > height[j]) ? j-- : i++; 
    }
    return(maxArea);
}

coding problems solutions Leetcode Problems Solutions Leetcode

Post navigation

Previous post
Next post

Leave a Reply

Your email address will not be published. Required fields are marked *

Programmingoneonone

We at Programmingoneonone, also known as Programming101 is a learning hub of programming and other related stuff. We provide free learning tutorials/articles related to programming and other technical stuff to people who are eager to learn about it.

Pages

  • About US
  • Contact US
  • Privacy Policy
  • DMCA

Practice

  • Java
  • C++
  • C

Follow US

  • YouTube
  • LinkedIn
  • Facebook
  • Pinterest
  • Instagram
©2026 Programmingoneonone | WordPress Theme by SuperbThemes