1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 06:51:41 +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": "Easy",
"likes": 1646,
"dislikes": 740,
"likes": 1693,
"dislikes": 749,
"isLiked": null,
"similarQuestions": "[]",
"exampleTestcases": "\"RLRRLLRLRL\"\n\"RLLLLRRRLR\"\n\"LLLLRRRR\"",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"193.7K\", \"totalSubmission\": \"228.8K\", \"totalAcceptedRaw\": 193727, \"totalSubmissionRaw\": 228770, \"acRate\": \"84.7%\"}",
"stats": "{\"totalAccepted\": \"196.4K\", \"totalSubmission\": \"232K\", \"totalAcceptedRaw\": 196377, \"totalSubmissionRaw\": 232022, \"acRate\": \"84.6%\"}",
"hints": [
"Loop from left to right maintaining a balance variable when it gets an L increase it by one otherwise decrease it by one.",
"Whenever the balance variable reaches zero then we increase the answer by one."