mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 15:31:43 +08:00
存量题库数据更新
This commit is contained in:
@@ -7,18 +7,35 @@
|
||||
<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>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2021/06/08/waterflow-grid.jpg" style="width: 573px; height: 573px;" />
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2021/06/08/waterflow-grid.jpg" style="width: 400px; height: 400px;" />
|
||||
<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]]
|
||||
<strong>Output:</strong> [[0,4],[1,3],[1,4],[2,2],[3,0],[3,1],[4,0]]
|
||||
<strong>Explanation:</strong> The following cells can flow to the Pacific and Atlantic oceans, as shown below:
|
||||
[0,4]: [0,4] -> Pacific Ocean
|
||||
[0,4] -> Atlantic Ocean
|
||||
[1,3]: [1,3] -> [0,3] -> Pacific Ocean
|
||||
[1,3] -> [1,4] -> Atlantic Ocean
|
||||
[1,4]: [1,4] -> [1,3] -> [0,3] -> Pacific Ocean
|
||||
[1,4] -> Atlantic Ocean
|
||||
[2,2]: [2,2] -> [1,2] -> [0,2] -> Pacific Ocean
|
||||
[2,2] -> [2,3] -> [2,4] -> Atlantic Ocean
|
||||
[3,0]: [3,0] -> Pacific Ocean
|
||||
[3,0] -> [4,0] -> Atlantic Ocean
|
||||
[3,1]: [3,1] -> [3,0] -> Pacific Ocean
|
||||
[3,1] -> [4,1] -> Atlantic Ocean
|
||||
[4,0]: [4,0] -> Pacific Ocean
|
||||
[4,0] -> Atlantic Ocean
|
||||
Note that there are other possible paths for these cells to flow to the Pacific and Atlantic oceans.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> heights = [[2,1],[1,2]]
|
||||
<strong>Output:</strong> [[0,0],[0,1],[1,0],[1,1]]
|
||||
<strong>Input:</strong> heights = [[1]]
|
||||
<strong>Output:</strong> [[0,0]]
|
||||
<strong>Explanation:</strong> The water can flow from the only cell to the Pacific and Atlantic oceans.
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
Reference in New Issue
Block a user