1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 23:11:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-03-29 15:21:05 +08:00
parent b84ae535b7
commit e730aa6794
2244 changed files with 8703 additions and 59499 deletions

View File

@@ -11,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 411,
"likes": 412,
"dislikes": 70,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Design Circular Deque\", \"titleSlug\": \"design-circular-deque\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Design Circular Queue\", \"titleSlug\": \"design-circular-queue\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
@@ -161,7 +161,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"14K\", \"totalSubmission\": \"25.3K\", \"totalAcceptedRaw\": 14021, \"totalSubmissionRaw\": 25276, \"acRate\": \"55.5%\"}",
"stats": "{\"totalAccepted\": \"14K\", \"totalSubmission\": \"25.3K\", \"totalAcceptedRaw\": 14038, \"totalSubmissionRaw\": 25310, \"acRate\": \"55.5%\"}",
"hints": [
"The constraints are low enough for a brute force, single array approach.",
"For an O(1) per method approach, use 2 double-ended queues: one for the first half and one for the second half."