From 2da4a4ab336a6fbcd01d01379fd9ad859aef89f7 Mon Sep 17 00:00:00 2001 From: thinkasany <480968828@qq.com> Date: Fri, 7 Apr 2023 00:07:32 +0800 Subject: [PATCH] style: update description to lc problem: No.34 --- .../README.md | 4 ++-- solution/main.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/solution/0000-0099/0034.Find First and Last Position of Element in Sorted Array/README.md b/solution/0000-0099/0034.Find First and Last Position of Element in Sorted Array/README.md index a1550b28c8..f8d23d79a6 100644 --- a/solution/0000-0099/0034.Find First and Last Position of Element in Sorted Array/README.md +++ b/solution/0000-0099/0034.Find First and Last Position of Element in Sorted Array/README.md @@ -17,13 +17,13 @@
示例 1:
-输入:nums = [5,7,7,8,8,10], target = 8
+输入:nums = [5,7,7,8,8,10], target = 8
输出:[3,4]
示例 2:
-输入:nums = [5,7,7,8,8,10], target = 6
+输入:nums = [5,7,7,8,8,10], target = 6
输出:[-1,-1]
示例 3:
diff --git a/solution/main.py b/solution/main.py index 2a2591f3c1..eb1e311112 100644 --- a/solution/main.py +++ b/solution/main.py @@ -134,7 +134,7 @@ def generate_summary(result): def refresh(result): """update problems""" pattern = re.compile("src=\"(.*?)\"") - skip_question_ids = {3, 33, 1599} + skip_question_ids = {3, 33, 34, 1599} for question in result: front_question_id = question['frontend_question_id']