2022: d04: ex2: add solution

This commit is contained in:
Bruno BELANYI 2022-12-04 06:31:58 +01:00
parent 9b01dc5723
commit c2cfef5e30
1 changed files with 24 additions and 0 deletions

24
2022/d04/ex2/ex2.py Executable file
View File

@ -0,0 +1,24 @@
#!/usr/bin/env python
import sys
def solve(input: list[str]) -> int:
def is_overlapping(line: str) -> bool:
def assignment_to_set(elf: str) -> set[int]:
start, end = elf.split("-")
return set(range(int(start), int(end) + 1))
elf1, elf2 = map(assignment_to_set, line.split(","))
return bool(elf1 & elf2)
return sum(map(is_overlapping, input))
def main() -> None:
input = sys.stdin.read().splitlines()
print(solve(input))
if __name__ == "__main__":
main()