1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 23:41:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2023-12-09 19:57:46 +08:00
parent 9bc4722a45
commit 3770b44d1e
4792 changed files with 10889 additions and 10886 deletions

View File

@@ -161,7 +161,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"410.4K\", \"totalSubmission\": \"654.7K\", \"totalAcceptedRaw\": 410363, \"totalSubmissionRaw\": 654741, \"acRate\": \"62.7%\"}",
"stats": "{\"totalAccepted\": \"410.5K\", \"totalSubmission\": \"654.9K\", \"totalAcceptedRaw\": 410477, \"totalSubmissionRaw\": 654894, \"acRate\": \"62.7%\"}",
"hints": [
"One thing's for sure, we will only flip a zero if it extends an existing window of 1s. Otherwise, there's no point in doing it, right? Think Sliding Window!",
"Since we know this problem can be solved using the sliding window construct, we might as well focus in that direction for hints. Basically, in a given window, we can never have > K zeros, right?",