1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 15:31:43 +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": 1254,
"dislikes": 49,
"likes": 1328,
"dislikes": 51,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Sort Characters By Frequency\", \"titleSlug\": \"sort-characters-by-frequency\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Divide Array Into Equal Pairs\", \"titleSlug\": \"divide-array-into-equal-pairs\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Most Frequent Number Following Key In an Array\", \"titleSlug\": \"most-frequent-number-following-key-in-an-array\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "[1,1,2,2,2,3]\n[2,3,1,3,2]\n[-1,1,-6,4,5,-6,1,4,1]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"55.9K\", \"totalSubmission\": \"81.8K\", \"totalAcceptedRaw\": 55908, \"totalSubmissionRaw\": 81816, \"acRate\": \"68.3%\"}",
"stats": "{\"totalAccepted\": \"58.7K\", \"totalSubmission\": \"85.8K\", \"totalAcceptedRaw\": 58703, \"totalSubmissionRaw\": 85841, \"acRate\": \"68.4%\"}",
"hints": [
"Count the frequency of each value.",
"Use a custom comparator to compare values by their frequency. If two values have the same frequency, compare their values."