Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions solution/2600-2699/2643.Row With Maximum Ones/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
<pre>
<strong>输入:</strong>mat = [[0,0,0],[0,1,1]]
<strong>输出:</strong>[1,2]
<strong>解释:</strong>下标为 1 的行中 1 的数量最多<code>。</code>该行 1 的数量<code>为 2 。所以,答案为</code> [1,2] 。
<strong>解释:</strong>下标为 1 的行中 1 的数量最多该行 1 的数量为 2 。所以,答案为 [1,2] 。
</pre>

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

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

<p>&nbsp;</p>

Expand Down
1 change: 1 addition & 0 deletions solution/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ def refresh(result):
2288,
2303,
2362,
2643,
2682,
}

Expand Down