From a3129c8e53071509089d269c02867a607502f7c2 Mon Sep 17 00:00:00 2001 From: thinkasany <480968828@qq.com> Date: Tue, 25 Jul 2023 01:49:43 +0800 Subject: [PATCH] chore: update lc problem: No.0128 --- solution/0100-0199/0128.Longest Consecutive Sequence/README.md | 2 +- solution/config.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/solution/0100-0199/0128.Longest Consecutive Sequence/README.md b/solution/0100-0199/0128.Longest Consecutive Sequence/README.md index 4ac617f4a11b4..b9cc3c2030a07 100644 --- a/solution/0100-0199/0128.Longest Consecutive Sequence/README.md +++ b/solution/0100-0199/0128.Longest Consecutive Sequence/README.md @@ -17,7 +17,7 @@
 输入:nums = [100,4,200,1,3,2]
 输出:4
-解释:最长数字连续序列是 [1, 2, 3, 4]。它的长度为 4。
+解释:最长数字连续序列是 [1, 2, 3, 4]。它的长度为 4。

示例 2:

diff --git a/solution/config.py b/solution/config.py index d5c96a07f9efb..0eea4cd629640 100644 --- a/solution/config.py +++ b/solution/config.py @@ -5,6 +5,7 @@ 33, 34, 115, + 128, 279, 280, 281,