2018: d05: ex1: add solution

This commit is contained in:
Bruno BELANYI 2024-12-29 16:10:28 -05:00
parent 51fe4bd802
commit 911e0aa6a2

29
2018/d05/ex1/ex1.py Executable file
View file

@ -0,0 +1,29 @@
#!/usr/bin/env python
import sys
def solve(input: str) -> int:
def reduce_polymer(polymer: str) -> str:
for i in range(26):
lower, upper = chr(ord("a") + i), chr(ord("A") + i)
polymer = polymer.replace(lower + upper, "")
polymer = polymer.replace(upper + lower, "")
return polymer
polymer = input.strip()
while True:
reduced = reduce_polymer(polymer)
if reduced == polymer:
return len(polymer)
polymer = reduced
assert False # Sanity check
def main() -> None:
input = sys.stdin.read()
print(solve(input))
if __name__ == "__main__":
main()