1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 15:31:43 +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": "Hard",
"likes": 1624,
"likes": 1629,
"dislikes": 25,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Minimum Number of Moves to Make Palindrome\", \"titleSlug\": \"minimum-number-of-moves-to-make-palindrome\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"44.3K\", \"totalSubmission\": \"70K\", \"totalAcceptedRaw\": 44327, \"totalSubmissionRaw\": 69960, \"acRate\": \"63.4%\"}",
"stats": "{\"totalAccepted\": \"44.5K\", \"totalSubmission\": \"70.2K\", \"totalAcceptedRaw\": 44471, \"totalSubmissionRaw\": 70172, \"acRate\": \"63.4%\"}",
"hints": [
"Is dynamic programming suitable for this problem ?",
"If we know the longest palindromic sub-sequence is x and the length of the string is n then, what is the answer to this problem? It is n - x as we need n - x insertions to make the remaining characters also palindrome."