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,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Medium",
"likes": 498,
"dislikes": 22,
"likes": 515,
"dislikes": 23,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Count Number of Homogenous Substrings\", \"titleSlug\": \"count-number-of-homogenous-substrings\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Count Vowel Substrings of a String\", \"titleSlug\": \"count-vowel-substrings-of-a-string\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "\"0110111\"\n\"101\"\n\"111111\"",
@@ -137,7 +137,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"28.7K\", \"totalSubmission\": \"65K\", \"totalAcceptedRaw\": 28659, \"totalSubmissionRaw\": 64960, \"acRate\": \"44.1%\"}",
"stats": "{\"totalAccepted\": \"29.1K\", \"totalSubmission\": \"65.9K\", \"totalAcceptedRaw\": 29147, \"totalSubmissionRaw\": 65891, \"acRate\": \"44.2%\"}",
"hints": [
"Count number of 1s in each consecutive-1 group. For a group with n consecutive 1s, the total contribution of it to the final answer is (n + 1) * n // 2."
],