1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 06:51:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-05-02 23:44:12 +08:00
parent 7ea03594b3
commit 2a71c78585
4790 changed files with 11696 additions and 10944 deletions

View File

@@ -11,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Hard",
"likes": 9286,
"dislikes": 326,
"likes": 9576,
"dislikes": 339,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Minimum Window Substring\", \"titleSlug\": \"minimum-window-substring\", \"difficulty\": \"Hard\", \"translatedTitle\": null}, {\"title\": \"Min Stack\", \"titleSlug\": \"min-stack\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Longest Substring with At Most Two Distinct Characters\", \"titleSlug\": \"longest-substring-with-at-most-two-distinct-characters\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Paint House II\", \"titleSlug\": \"paint-house-ii\", \"difficulty\": \"Hard\", \"translatedTitle\": null}, {\"title\": \"Jump Game VI\", \"titleSlug\": \"jump-game-vi\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "[1,3,-1,-3,5,3,6,7]\n3\n[1]\n1",
@@ -161,7 +161,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"546.2K\", \"totalSubmission\": \"1.2M\", \"totalAcceptedRaw\": 546247, \"totalSubmissionRaw\": 1183375, \"acRate\": \"46.2%\"}",
"stats": "{\"totalAccepted\": \"558.6K\", \"totalSubmission\": \"1.2M\", \"totalAcceptedRaw\": 558565, \"totalSubmissionRaw\": 1208874, \"acRate\": \"46.2%\"}",
"hints": [
"How about using a data structure such as deque (double-ended queue)?",
"The queue size need not be the same as the windows size.",