From 7e3fc8ea0d59a9a2c0e1765b62cc6e386cef5fdf Mon Sep 17 00:00:00 2001 From: jianghongcheng <35664721+jianghongcheng@users.noreply.github.com> Date: Sat, 27 May 2023 19:17:50 -0500 Subject: [PATCH] =?UTF-8?q?Update=200491.=E9=80=92=E5=A2=9E=E5=AD=90?= =?UTF-8?q?=E5=BA=8F=E5=88=97.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- problems/0491.递增子序列.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/0491.递增子序列.md b/problems/0491.递增子序列.md index 56a70e8b..a805a262 100644 --- a/problems/0491.递增子序列.md +++ b/problems/0491.递增子序列.md @@ -266,7 +266,7 @@ class Solution { ### Python -python3 + 回溯 利用set去重 ```python class Solution: