Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 611e4f3

Browse files
committed
Create README - LeetHub
1 parent 93061f3 commit 611e4f3

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

0417-pacific-atlantic-water-flow/README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
<h2><a href="https://leetcode.com/problems/pacific-atlantic-water-flow/">417. Pacific Atlantic Water Flow</a></h2><h3>Medium</h3><hr><div><p>There is an <code>m x n</code> rectangular island that borders both the <strong>Pacific Ocean</strong> and <strong>Atlantic Ocean</strong>. The <strong>Pacific Ocean</strong> touches the island's left and top edges, and the <strong>Atlantic Ocean</strong> touches the island's right and bottom edges.</p>
1+
<h2><a href="https://leetcode.com/problems/pacific-atlantic-water-flow">417. Pacific Atlantic Water Flow</a></h2><h3>Medium</h3><hr><p>There is an <code>m x n</code> rectangular island that borders both the <strong>Pacific Ocean</strong> and <strong>Atlantic Ocean</strong>. The <strong>Pacific Ocean</strong> touches the island&#39;s left and top edges, and the <strong>Atlantic Ocean</strong> touches the island&#39;s right and bottom edges.</p>
22

33
<p>The island is partitioned into a grid of square cells. You are given an <code>m x n</code> integer matrix <code>heights</code> where <code>heights[r][c]</code> represents the <strong>height above sea level</strong> of the cell at coordinate <code>(r, c)</code>.</p>
44

5-
<p>The island receives a lot of rain, and the rain water can flow to neighboring cells directly north, south, east, and west if the neighboring cell's height is <strong>less than or equal to</strong> the current cell's height. Water can flow from any cell adjacent to an ocean into the ocean.</p>
5+
<p>The island receives a lot of rain, and the rain water can flow to neighboring cells directly north, south, east, and west if the neighboring cell&#39;s height is <strong>less than or equal to</strong> the current cell&#39;s height. Water can flow from any cell adjacent to an ocean into the ocean.</p>
66

77
<p>Return <em>a <strong>2D list</strong> of grid coordinates </em><code>result</code><em> where </em><code>result[i] = [r<sub>i</sub>, c<sub>i</sub>]</code><em> denotes that rain water can flow from cell </em><code>(r<sub>i</sub>, c<sub>i</sub>)</code><em> to <strong>both</strong> the Pacific and Atlantic oceans</em>.</p>
88

99
<p>&nbsp;</p>
1010
<p><strong class="example">Example 1:</strong></p>
11-
<img alt="" src="https://assets.leetcode.com/uploads/2021/06/08/waterflow-grid.jpg" style="width: 400px; height: 400px;">
12-
<pre><strong>Input:</strong> heights = [[1,2,2,3,5],[3,2,3,4,4],[2,4,5,3,1],[6,7,1,4,5],[5,1,1,2,4]]
11+
<img alt="" src="https://assets.leetcode.com/uploads/2021/06/08/waterflow-grid.jpg" style="width: 400px; height: 400px;" />
12+
<pre>
13+
<strong>Input:</strong> heights = [[1,2,2,3,5],[3,2,3,4,4],[2,4,5,3,1],[6,7,1,4,5],[5,1,1,2,4]]
1314
<strong>Output:</strong> [[0,4],[1,3],[1,4],[2,2],[3,0],[3,1],[4,0]]
1415
<strong>Explanation:</strong> The following cells can flow to the Pacific and Atlantic oceans, as shown below:
1516
[0,4]: [0,4] -&gt; Pacific Ocean
@@ -31,7 +32,8 @@ Note that there are other possible paths for these cells to flow to the Pacific
3132

3233
<p><strong class="example">Example 2:</strong></p>
3334

34-
<pre><strong>Input:</strong> heights = [[1]]
35+
<pre>
36+
<strong>Input:</strong> heights = [[1]]
3537
<strong>Output:</strong> [[0,0]]
3638
<strong>Explanation:</strong> The water can flow from the only cell to the Pacific and Atlantic oceans.
3739
</pre>
@@ -45,4 +47,3 @@ Note that there are other possible paths for these cells to flow to the Pacific
4547
<li><code>1 &lt;= m, n &lt;= 200</code></li>
4648
<li><code>0 &lt;= heights[r][c] &lt;= 10<sup>5</sup></code></li>
4749
</ul>
48-
</div>

0 commit comments

Comments
 (0)