1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-13 19:31:42 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

存量题库数据更新

This commit is contained in:
2023-12-09 18:42:21 +08:00
parent a788808cd7
commit c198538f10
10843 changed files with 288489 additions and 248355 deletions

View File

@@ -4,7 +4,7 @@
<p>岛上雨水较多,如果相邻单元格的高度 <strong>小于或等于</strong> 当前单元格的高度,雨水可以直接向北、南、东、西流向相邻单元格。水可以从海洋附近的任何单元格流入海洋。</p>
<p>返回 <em>网格坐标 <code>result</code>&nbsp;<strong>2D列表</strong> ,其中&nbsp;<code>result[i] = [r<sub>i</sub>, c<sub>i</sub>]</code>&nbsp;表示雨水可以从单元格 <code>(ri, ci)</code> <strong>太平洋和大西洋</strong></em></p>
<p>返回网格坐标 <code>result</code>&nbsp;<strong>2D 列表</strong> ,其中&nbsp;<code>result[i] = [r<sub>i</sub>, c<sub>i</sub>]</code>&nbsp;表示雨水从单元格 <code>(ri, ci)</code> <strong>既可流向太平洋也可流向大西洋</strong></p>
<p>&nbsp;</p>