Container With Most Water - LeetCode
You are given an integer array height of length n. There are n vertical lines drawn such that the two endpoints of the…leetcode.com Intuition What is the best possiblity for a container to have maximum water? The best possiblity will be when, you have the widest width(w) and highest height(h), right? So the maximum width we can have is length of the array(n). Now we have to find the height. …