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

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