2022: d06: ex2: add solution

This commit is contained in:
Bruno BELANYI 2022-12-06 07:49:13 +01:00
parent 20fcfe32b2
commit 0c2712d7db
1 changed files with 36 additions and 0 deletions

36
2022/d06/ex2/ex2.py Executable file
View File

@ -0,0 +1,36 @@
#!/usr/bin/env python
import collections
import itertools
import sys
from collections.abc import Iterable
from typing import TypeVar
T = TypeVar("T")
def sliding_window(iterable: Iterable[T], n: int) -> Iterable[tuple[T, ...]]:
it = iter(iterable)
window = collections.deque(itertools.islice(it, n), maxlen=n)
if len(window) == n:
yield tuple(window)
for x in it:
window.append(x)
yield tuple(window)
def solve(input: str) -> int:
SIZE = 14
for i, tup in enumerate(sliding_window(input, SIZE), start=SIZE):
if len(set(tup)) == SIZE:
return i
assert False
def main() -> None:
input = sys.stdin.read().replace("\n", "")
print(solve(input))
if __name__ == "__main__":
main()