scandisk coding round in python with sliding window technique algorithm in python code example
Example: python sliding window
def window(iterable, size=2):
i = iter(iterable)
win = []
for e in range(0, size):
win.append(next(i))
yield win
for e in i:
win = win[1:] + [e]
yield win