Container With Most Water
Difficulty: Medium
Source: LeetCode
Description
You are given an array height where each element represents the height of a vertical line drawn at that index on the x-axis.
Your goal is to pick two distinct lines such that, using the x-axis as the base, the container formed between these lines holds the maximum amount of water, and you must return that maximum water area
Please see full description in this link
Example
Example 1:
- Input: height = [1, 8, 6, 2, 5, 4, 8, 3, 7]
- Output: 49
- Explanation (high level): The best container uses the line of height 8 and the line of height 7, which are far enough apart that the width and the shorter height together produce area 49.
Code
# To be solved