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-03-29 15:21:05 +08:00
parent b84ae535b7
commit e730aa6794
2244 changed files with 8703 additions and 59499 deletions

View File

@@ -11,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 5099,
"dislikes": 336,
"likes": 5112,
"dislikes": 337,
"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\": \"186.8K\", \"totalSubmission\": \"427K\", \"totalAcceptedRaw\": 186765, \"totalSubmissionRaw\": 426973, \"acRate\": \"43.7%\"}",
"stats": "{\"totalAccepted\": \"187.1K\", \"totalSubmission\": \"427.6K\", \"totalAcceptedRaw\": 187087, \"totalSubmissionRaw\": 427559, \"acRate\": \"43.8%\"}",
"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."
],