diff --git a/solution/2600-2699/2643.Row With Maximum Ones/README.md b/solution/2600-2699/2643.Row With Maximum Ones/README.md index 2e4ce6434cbc5..07fd7443ec7b8 100644 --- a/solution/2600-2699/2643.Row With Maximum Ones/README.md +++ b/solution/2600-2699/2643.Row With Maximum Ones/README.md @@ -27,7 +27,7 @@
 输入:mat = [[0,0,0],[0,1,1]]
 输出:[1,2]
-解释:下标为 1 的行中 1 的数量最多该行 1 的数量为 2 。所以,答案为 [1,2] 。
+解释:下标为 1 的行中 1 的数量最多。该行 1 的数量为 2 。所以,答案为 [1,2] 。
 

示例 3:

@@ -35,7 +35,7 @@
 输入:mat = [[0,0],[1,1],[0,0]]
 输出:[1,2]
-解释:下标为 1 的行中 1 的数量最多。该行 1 的数量为 2 。所以,答案为 [1,2] 。
+解释:下标为 1 的行中 1 的数量最多。该行 1 的数量为 2 。所以,答案为 [1,2] 。

 

diff --git a/solution/util.py b/solution/util.py index 175acc0eb64d2..ae4e454f68ec6 100644 --- a/solution/util.py +++ b/solution/util.py @@ -225,6 +225,7 @@ def refresh(result): 2288, 2303, 2362, + 2643, 2682, }