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": "Medium",
"likes": 1168,
"likes": 1170,
"dislikes": 56,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Determine if Two Strings Are Close\", \"titleSlug\": \"determine-if-two-strings-are-close\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Minimum Number of Steps to Make Two Strings Anagram II\", \"titleSlug\": \"minimum-number-of-steps-to-make-two-strings-anagram-ii\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"85.8K\", \"totalSubmission\": \"112.5K\", \"totalAcceptedRaw\": 85768, \"totalSubmissionRaw\": 112528, \"acRate\": \"76.2%\"}",
"stats": "{\"totalAccepted\": \"86K\", \"totalSubmission\": \"112.8K\", \"totalAcceptedRaw\": 85986, \"totalSubmissionRaw\": 112782, \"acRate\": \"76.2%\"}",
"hints": [
"Count the frequency of characters of each string.",
"Loop over all characters if the frequency of a character in t is less than the frequency of the same character in s then add the difference between the frequencies to the answer."