热门标签
更多>
搜索结果
查询Tags标签: rare,共有 2条记录-
Leetcode 2024. Maximize the Confusion of an Exam [Python]
维护一段连续的subarray,窗口内只有要么k个T或者k个F,并计算此时窗口的大小,更新全局最大值。 class Solution:def maxConsecutiveAnswers(self, answerKey: str, k: int) -> int:rare = 0count_T = 0count_F = 0res = 0for front in range(len(answerKey)):if answ…
2021/12/26 14:37:13 人评论 次浏览 -
Leetcode 2024. Maximize the Confusion of an Exam [Python]
维护一段连续的subarray,窗口内只有要么k个T或者k个F,并计算此时窗口的大小,更新全局最大值。 class Solution:def maxConsecutiveAnswers(self, answerKey: str, k: int) -> int:rare = 0count_T = 0count_F = 0res = 0for front in range(len(answerKey)):if answ…
2021/12/26 14:37:13 人评论 次浏览