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-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": 96,
"dislikes": 19,
"likes": 105,
"dislikes": 20,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Longest Palindromic Subsequence\", \"titleSlug\": \"longest-palindromic-subsequence\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "\"bbabab\"\n\"dcbccacdb\"",
@@ -34,7 +34,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"3.2K\", \"totalSubmission\": \"6.2K\", \"totalAcceptedRaw\": 3155, \"totalSubmissionRaw\": 6210, \"acRate\": \"50.8%\"}",
"stats": "{\"totalAccepted\": \"3.3K\", \"totalSubmission\": \"6.4K\", \"totalAcceptedRaw\": 3297, \"totalSubmissionRaw\": 6439, \"acRate\": \"51.2%\"}",
"hints": [
"As with any good dp problem that uses palindromes, try building the palindrome from the edges",
"The prime point is to check that no two adjacent characters are equal, so save the past character while building the palindrome."