标签:iso https 时间复杂度 遍历 题目 else als char 方法
717. 1-bit and 2-bit Characters
将指针设置在第0个位置,当数组长度>1时,如果当前位置是1,就把前两个数pop掉,否则是0的话就把前1个数pop掉,遍历结束看看bits还有没有元素,有的话return True,没有就return False。
时间复杂度:O(n)
空间复杂度:O(1)
class Solution:
def isOneBitCharacter(self, bits: List[int]) -> bool:
while len(bits) > 1:
if bits[0]:
bits.pop(0)
bits.pop(0)
else:
bits.pop(0)
if not len(bits):
return False
else:
return True
LeetCode #717. 1-bit and 2-bit Characters
标签:iso https 时间复杂度 遍历 题目 else als char 方法
原文地址:https://www.cnblogs.com/RatsCommander/p/13926462.html