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-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": "Easy",
"likes": 1252,
"likes": 1254,
"dislikes": 49,
"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}]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"55.7K\", \"totalSubmission\": \"81.5K\", \"totalAcceptedRaw\": 55708, \"totalSubmissionRaw\": 81540, \"acRate\": \"68.3%\"}",
"stats": "{\"totalAccepted\": \"55.9K\", \"totalSubmission\": \"81.8K\", \"totalAcceptedRaw\": 55908, \"totalSubmissionRaw\": 81816, \"acRate\": \"68.3%\"}",
"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."