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": true,
"difficulty": "Medium",
"likes": 704,
"dislikes": 84,
"likes": 710,
"dislikes": 85,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Next Permutation\", \"titleSlug\": \"next-permutation\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Permutations II\", \"titleSlug\": \"permutations-ii\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Palindrome Permutation\", \"titleSlug\": \"palindrome-permutation\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "\"aabb\"\n\"abc\"",
@@ -40,7 +40,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"53.4K\", \"totalSubmission\": \"135.2K\", \"totalAcceptedRaw\": 53366, \"totalSubmissionRaw\": 135221, \"acRate\": \"39.5%\"}",
"stats": "{\"totalAccepted\": \"54.2K\", \"totalSubmission\": \"136.7K\", \"totalAcceptedRaw\": 54158, \"totalSubmissionRaw\": 136716, \"acRate\": \"39.6%\"}",
"hints": [
"If a palindromic permutation exists, we just need to generate the first half of the string.",
"To generate all distinct permutations of a (half of) string, use a similar approach from: <a href=\"/problems/permutations-ii\">Permutations II</a> or <a href=\"/problems/next-permutation\">Next Permutation</a>."