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-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": false,
"difficulty": "Medium",
"likes": 7447,
"dislikes": 283,
"likes": 7579,
"dislikes": 287,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Merge Intervals\", \"titleSlug\": \"merge-intervals\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
"exampleTestcases": "\"ababcbacadefegdehijhklij\"\n\"eccbbbbdec\"",
@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"374.1K\", \"totalSubmission\": \"470.5K\", \"totalAcceptedRaw\": 374083, \"totalSubmissionRaw\": 470538, \"acRate\": \"79.5%\"}",
"stats": "{\"totalAccepted\": \"380.3K\", \"totalSubmission\": \"478.1K\", \"totalAcceptedRaw\": 380328, \"totalSubmissionRaw\": 478140, \"acRate\": \"79.5%\"}",
"hints": [
"Try to greedily choose the smallest partition that includes the first letter. If you have something like \"abaccbdeffed\", then you might need to add b. You can use an map like \"last['b'] = 5\" to help you expand the width of your partition."
],