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": "Easy",
"likes": 153,
"dislikes": 23,
"likes": 187,
"dislikes": 27,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Two Sum\", \"titleSlug\": \"two-sum\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Shortest Word Distance\", \"titleSlug\": \"shortest-word-distance\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "[3,4,9,1,3,9,5]\n9\n1\n[2,2,2,2,2]\n2\n2",
@@ -137,7 +137,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"19.5K\", \"totalSubmission\": \"30.2K\", \"totalAcceptedRaw\": 19536, \"totalSubmissionRaw\": 30223, \"acRate\": \"64.6%\"}",
"stats": "{\"totalAccepted\": \"21.7K\", \"totalSubmission\": \"33.7K\", \"totalAcceptedRaw\": 21678, \"totalSubmissionRaw\": 33729, \"acRate\": \"64.3%\"}",
"hints": [
"For every occurrence of key in nums, find all indices within distance k from it.",
"Use a hash table to remove duplicate indices."