from utils import sliding_window inp: list[int] = [int(l.strip()) for l in open('1.in')] print(sum(s[1] > s[0] for s in sliding_window(inp, 2))) print(sum(s[3] > s[0] for s in sliding_window(inp, 4)))