mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-12 02:41:42 +08:00
批量更新数据
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
<p><img alt="" src="https://assets.leetcode.com/uploads/2020/09/14/maximal.jpg" style="width: 402px; height: 322px;" /></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>matrix = ["10100","10111","11111","10010"]
|
||||
<strong>输入:</strong>matrix = ["10100","10111","11111","10010"]
|
||||
<strong>输出:</strong>6
|
||||
<strong>解释:</strong>最大矩形如上图所示。
|
||||
</pre>
|
||||
@@ -24,21 +24,21 @@
|
||||
<p><strong>示例 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>matrix = ["0"]
|
||||
<strong>输入:</strong>matrix = ["0"]
|
||||
<strong>输出:</strong>0
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 4:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>matrix = ["1"]
|
||||
<strong>输入:</strong>matrix = ["1"]
|
||||
<strong>输出:</strong>1
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 5:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>matrix = ["00"]
|
||||
<strong>输入:</strong>matrix = ["00"]
|
||||
<strong>输出:</strong>0
|
||||
</pre>
|
||||
|
||||
@@ -50,9 +50,9 @@
|
||||
<li><code>rows == matrix.length</code></li>
|
||||
<li><code>cols == matrix[0].length</code></li>
|
||||
<li><code>0 <= row, cols <= 200</code></li>
|
||||
<li><code>matrix[i][j]</code> 为 <code>'0'</code> 或 <code>'1'</code></li>
|
||||
<li><code>matrix[i][j]</code> 为 <code>'0'</code> 或 <code>'1'</code></li>
|
||||
</ul>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>注意:本题与主站 85 题相同(输入参数格式不同): <a href="https://leetcode-cn.com/problems/daily-temperatures/">https://leetcode-cn.com/problems/maximal-rectangle/</a></p>
|
||||
<p>注意:本题与主站 85 题相同(输入参数格式不同): <a href="https://leetcode-cn.com/problems/maximal-rectangle/">https://leetcode-cn.com/problems/maximal-rectangle/</a></p>
|
||||
|
Reference in New Issue
Block a user