Merge pull request #2384 from smartboy37597/1005doc

Update max array doc
This commit is contained in:
程序员Carl 2023-12-30 16:58:33 +08:00 committed by GitHub
commit c5a0908906
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
示例 1
* 输入A = [4,2,3], K = 1
* 输出5
* 解释:选择索引 (1,) ,然后 A 变为 [4,-2,3]。
* 解释:选择索引 (1) ,然后 A 变为 [4,-2,3]。
示例 2
* 输入A = [3,-1,0,2], K = 3