Java Hyd Team pinned ยซDO YOU GUY'S NEED SOME MORE HAND WRITTEN POINT TO POINT NOTES ??ยป
Java Hyd Team
DO YOU GUY'S NEED SOME MORE HAND WRITTEN POINT TO POINT NOTES ??
Please vote it takes efforts to share notes so point to point
If you like the way we describe if you really think this support matters do share us with your friends let's grow
Only one response i have rcvd yet anyone else wanna share or we can close accepting n sharing these questions
Java Hyd Team
DO YOU GUY'S NEED SOME MORE HAND WRITTEN POINT TO POINT NOTES ??
Only 8 of 28 need these things rest can leave this channel ๐๐
You are given an integer array height of length n. There are n vertical lines drawn such that the two endpoints of the ith line are (i, 0) and (i, height[i]).
Find two lines that together with the x-axis form a container, such that the container contains the most water.
Return the maximum amount of water a container can store.
Notice that you may not slant the container.
Find two lines that together with the x-axis form a container, such that the container contains the most water.
Return the maximum amount of water a container can store.
Notice that you may not slant the container.
Input: height = [1,8,6,2,5,4,8,3,7]
Output: 49
Explanation: The above vertical lines are represented by array [1,8,6,2,5,4,8,3,7]. In this case, the max area of water (blue section) the container can contain is 49.
Output: 49
Explanation: The above vertical lines are represented by array [1,8,6,2,5,4,8,3,7]. In this case, the max area of water (blue section) the container can contain is 49.