1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 07:21:40 +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": "Medium",
"likes": 522,
"dislikes": 223,
"likes": 528,
"dislikes": 225,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Plates Between Candles\", \"titleSlug\": \"plates-between-candles\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "\"abcda\"\n[[3,3,0],[1,2,0],[0,3,1],[0,3,2],[0,4,1]]\n\"lyb\"\n[[0,1,0],[2,2,1]]",
@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"19.7K\", \"totalSubmission\": \"53K\", \"totalAcceptedRaw\": 19738, \"totalSubmissionRaw\": 52974, \"acRate\": \"37.3%\"}",
"stats": "{\"totalAccepted\": \"20K\", \"totalSubmission\": \"53.5K\", \"totalAcceptedRaw\": 19971, \"totalSubmissionRaw\": 53480, \"acRate\": \"37.3%\"}",
"hints": [
"Since we can rearrange the substring, all we care about is the frequency of each character in that substring.",
"How to find the character frequencies efficiently ?",