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,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Medium",
"likes": 702,
"dislikes": 83,
"likes": 704,
"dislikes": 84,
"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.3K\", \"totalSubmission\": \"135.1K\", \"totalAcceptedRaw\": 53326, \"totalSubmissionRaw\": 135117, \"acRate\": \"39.5%\"}",
"stats": "{\"totalAccepted\": \"53.4K\", \"totalSubmission\": \"135.2K\", \"totalAcceptedRaw\": 53366, \"totalSubmissionRaw\": 135221, \"acRate\": \"39.5%\"}",
"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>."