Skip to content

Commit 7aeedec

Browse files
authored
chore: update lc problem: No.2643 (doocs#1135)
1 parent 48d3e62 commit 7aeedec

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

solution/2600-2699/2643.Row With Maximum Ones/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
<pre>
2828
<strong>输入:</strong>mat = [[0,0,0],[0,1,1]]
2929
<strong>输出:</strong>[1,2]
30-
<strong>解释:</strong>下标为 1 的行中 1 的数量最多<code>。</code>该行 1 的数量<code>为 2 。所以,答案为</code> [1,2] 。
30+
<strong>解释:</strong>下标为 1 的行中 1 的数量最多该行 1 的数量为 2 。所以,答案为 [1,2] 。
3131
</pre>
3232

3333
<p><strong>示例 3:</strong></p>
3434

3535
<pre>
3636
<strong>输入:</strong>mat = [[0,0],[1,1],[0,0]]
3737
<strong>输出:</strong>[1,2]
38-
<strong>解释:</strong>下标为 1 的行中 1 的数量最多。该行 1 的数量<code>为 2 。所以,答案为</code> [1,2] 。</pre>
38+
<strong>解释:</strong>下标为 1 的行中 1 的数量最多。该行 1 的数量为 2 。所以,答案为 [1,2] 。</pre>
3939

4040
<p>&nbsp;</p>
4141

solution/util.py

+1
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ def refresh(result):
225225
2288,
226226
2303,
227227
2362,
228+
2643,
228229
2682,
229230
}
230231

0 commit comments

Comments
 (0)