mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-05 23:41:41 +08:00
存量题库数据更新
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
<p>The test cases are generated so that <code>answer</code> is unique under the given rules.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2020/10/18/rank1.jpg" style="width: 442px; height: 162px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> matrix = [[1,2],[3,4]]
|
||||
@@ -29,14 +29,14 @@ The rank of matrix[1][0] is 2 because matrix[1][0] > matrix[0][0] and matrix[
|
||||
The rank of matrix[1][1] is 3 because matrix[1][1] > matrix[0][1], matrix[1][1] > matrix[1][0], and both matrix[0][1] and matrix[1][0] are rank 2.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2020/10/18/rank2.jpg" style="width: 442px; height: 162px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> matrix = [[7,7],[7,7]]
|
||||
<strong>Output:</strong> [[1,1],[1,1]]
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 3:</strong></p>
|
||||
<p><strong class="example">Example 3:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2020/10/18/rank3.jpg" style="width: 601px; height: 322px;" />
|
||||
<pre>
|
||||
<strong>Input:</strong> matrix = [[20,-21,14],[-19,4,19],[22,-47,24],[-19,4,19]]
|
||||
|
Reference in New Issue
Block a user