当前位置: 代码迷 >> 综合 >> Leetcode 1529. Bulb Switcher IV (python)
  详细解决方案

Leetcode 1529. Bulb Switcher IV (python)

热度:97   发布时间:2023-11-26 06:30:06.0

题目

在这里插入图片描述

解法:

每次有连续的两个字符不同就需要一次反转

class Solution:def minFlips(self, target: str) -> int:if not target:return 0if target[0] == '0':count = 0else:count = 1for i in range(1,len(target)):if target[i]!=target[i-1]:#print(i)count += 1return count