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": 5112,
"dislikes": 337,
"likes": 5207,
"dislikes": 341,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Smallest K-Length Subsequence With Occurrences of a Letter\", \"titleSlug\": \"smallest-k-length-subsequence-with-occurrences-of-a-letter\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
"exampleTestcases": "\"bcabc\"\n\"cbacdcbc\"",
@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"187.1K\", \"totalSubmission\": \"427.6K\", \"totalAcceptedRaw\": 187087, \"totalSubmissionRaw\": 427559, \"acRate\": \"43.8%\"}",
"stats": "{\"totalAccepted\": \"190.3K\", \"totalSubmission\": \"433.9K\", \"totalAcceptedRaw\": 190290, \"totalSubmissionRaw\": 433858, \"acRate\": \"43.9%\"}",
"hints": [
"Greedily try to add one missing character. How to check if adding some character will not cause problems ? Use bit-masks to check whether you will be able to complete the sub-sequence if you add the character at some index i."
],