1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 15:01: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,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Hard",
"likes": 698,
"likes": 711,
"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\": \"18K\", \"totalSubmission\": \"29.6K\", \"totalAcceptedRaw\": 17974, \"totalSubmissionRaw\": 29553, \"acRate\": \"60.8%\"}",
"stats": "{\"totalAccepted\": \"18.3K\", \"totalSubmission\": \"30.1K\", \"totalAcceptedRaw\": 18336, \"totalSubmissionRaw\": 30137, \"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."