1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 23:11: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": "Medium",
"likes": 838,
"dislikes": 206,
"likes": 858,
"dislikes": 207,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Determine if Two Strings Are Close\", \"titleSlug\": \"determine-if-two-strings-are-close\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "\"xx\"\n\"yy\"\n\"xy\"\n\"yx\"\n\"xx\"\n\"xy\"",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"27.2K\", \"totalSubmission\": \"42.6K\", \"totalAcceptedRaw\": 27183, \"totalSubmissionRaw\": 42609, \"acRate\": \"63.8%\"}",
"stats": "{\"totalAccepted\": \"27.6K\", \"totalSubmission\": \"43.2K\", \"totalAcceptedRaw\": 27562, \"totalSubmissionRaw\": 43231, \"acRate\": \"63.8%\"}",
"hints": [
"First, ignore all the already matched positions, they don't affect the answer at all. For the unmatched positions, there are three basic cases (already given in the examples):",
"(\"xx\", \"yy\") => 1 swap, (\"xy\", \"yx\") => 2 swaps",