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

View File

@@ -11,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 1191,
"likes": 1192,
"dislikes": 24,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Max Consecutive Ones\", \"titleSlug\": \"max-consecutive-ones\", \"difficulty\": \"Easy\", \"translatedTitle\": null}, {\"title\": \"Count Number of Homogenous Substrings\", \"titleSlug\": \"count-number-of-homogenous-substrings\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Longest Substring of One Repeating Character\", \"titleSlug\": \"longest-substring-of-one-repeating-character\", \"difficulty\": \"Hard\", \"translatedTitle\": null}]",
@@ -131,7 +131,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"116.7K\", \"totalSubmission\": \"188.3K\", \"totalAcceptedRaw\": 116665, \"totalSubmissionRaw\": 188274, \"acRate\": \"62.0%\"}",
"stats": "{\"totalAccepted\": \"116.8K\", \"totalSubmission\": \"188.5K\", \"totalAcceptedRaw\": 116784, \"totalSubmissionRaw\": 188470, \"acRate\": \"62.0%\"}",
"hints": [
"Keep an array power where power[i] is the maximum power of the i-th character.",
"The answer is max(power[i])."