1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 06:51:41 +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": 696,
"likes": 698,
"dislikes": 12,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Palindrome Partitioning IV\", \"titleSlug\": \"palindrome-partitioning-iv\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
@@ -143,7 +143,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"17.9K\", \"totalSubmission\": \"29.5K\", \"totalAcceptedRaw\": 17938, \"totalSubmissionRaw\": 29504, \"acRate\": \"60.8%\"}",
"stats": "{\"totalAccepted\": \"18K\", \"totalSubmission\": \"29.6K\", \"totalAcceptedRaw\": 17974, \"totalSubmissionRaw\": 29553, \"acRate\": \"60.8%\"}",
"hints": [
"For each substring calculate the minimum number of steps to make it palindrome and store it in a table.",
"Create a dp(pos, cnt) which means the minimum number of characters changed for the suffix of s starting on pos splitting the suffix on cnt chunks."