Skip to content

Commit 5bcabcb

Browse files
committed
Create README - LeetHub
1 parent 1b90586 commit 5bcabcb

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<h2><a href="https://leetcode.com/problems/container-with-most-water">11. Container With Most Water</a></h2><h3>Medium</h3><hr><p>You are given an integer array <code>height</code> of length <code>n</code>. There are <code>n</code> vertical lines drawn such that the two endpoints of the <code>i<sup>th</sup></code> line are <code>(i, 0)</code> and <code>(i, height[i])</code>.</p>
2+
3+
<p>Find two lines that together with the x-axis form a container, such that the container contains the most water.</p>
4+
5+
<p>Return <em>the maximum amount of water a container can store</em>.</p>
6+
7+
<p><strong>Notice</strong> that you may not slant the container.</p>
8+
9+
<p>&nbsp;</p>
10+
<p><strong class="example">Example 1:</strong></p>
11+
<img alt="" src="https://s3-lc-upload.s3.amazonaws.com/uploads/2018/07/17/question_11.jpg" style="width: 600px; height: 287px;" />
12+
<pre>
13+
<strong>Input:</strong> height = [1,8,6,2,5,4,8,3,7]
14+
<strong>Output:</strong> 49
15+
<strong>Explanation:</strong> 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.
16+
</pre>
17+
18+
<p><strong class="example">Example 2:</strong></p>
19+
20+
<pre>
21+
<strong>Input:</strong> height = [1,1]
22+
<strong>Output:</strong> 1
23+
</pre>
24+
25+
<p>&nbsp;</p>
26+
<p><strong>Constraints:</strong></p>
27+
28+
<ul>
29+
<li><code>n == height.length</code></li>
30+
<li><code>2 &lt;= n &lt;= 10<sup>5</sup></code></li>
31+
<li><code>0 &lt;= height[i] &lt;= 10<sup>4</sup></code></li>
32+
</ul>

0 commit comments

Comments
 (0)