2022: d04: ex1: add solution
This commit is contained in:
parent
32ccf155df
commit
d43d8c0cf1
24
2022/d04/ex1/ex1.py
Executable file
24
2022/d04/ex1/ex1.py
Executable file
|
@ -0,0 +1,24 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import sys
|
||||
|
||||
|
||||
def solve(input: list[str]) -> int:
|
||||
def is_redundant(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 elf1.issubset(elf2) or elf2.issubset(elf1)
|
||||
|
||||
return sum(map(is_redundant, input))
|
||||
|
||||
|
||||
def main() -> None:
|
||||
input = sys.stdin.read().splitlines()
|
||||
print(solve(input))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
Loading…
Reference in a new issue