From 452e70224687ae4d6a9320f3f0cc5f2099e0577e Mon Sep 17 00:00:00 2001 From: Wang Qin <37098874+dqwert@users.noreply.github.com> Date: Sun, 13 Jun 2021 22:21:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=20665.=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E4=B8=80=E4=B8=AA=E6=95=B0=E6=88=90=E4=B8=BA=E9=9D=9E=E9=80=92?= =?UTF-8?q?=E5=87=8F=E6=95=B0=E7=BB=84=EF=BC=88Non-decreasing=20Array?= =?UTF-8?q?=EF=BC=89=E9=9A=BE=E5=BA=A6=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 665. 修改一个数成为非递减数组(Non-decreasing Array) 国际区和中国区都显示 Medium 难度 参见: [Leetcode](https://leetcode.com/problems/non-decreasing-array/description/) [力扣](https://leetcode-cn.com/problems/non-decreasing-array/description/) --- notes/Leetcode 题解 - 贪心思想.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/Leetcode 题解 - 贪心思想.md b/notes/Leetcode 题解 - 贪心思想.md index 6fd7ed28..4ac011be 100644 --- a/notes/Leetcode 题解 - 贪心思想.md +++ b/notes/Leetcode 题解 - 贪心思想.md @@ -293,7 +293,7 @@ public boolean isSubsequence(String s, String t) { ## 9. 修改一个数成为非递减数组 -665\. Non-decreasing Array (Easy) +665\. Non-decreasing Array (Medium) [Leetcode](https://leetcode.com/problems/non-decreasing-array/description/) / [力扣](https://leetcode-cn.com/problems/non-decreasing-array/description/)