mirror of
https://github.com/thib8956/advent-of-code.git
synced 2024-12-25 21:36:29 +00:00
23 lines
408 B
Python
23 lines
408 B
Python
#!/usr/bin/env python3
|
|
import itertools
|
|
|
|
|
|
def main(inp):
|
|
# Part 1
|
|
changes = [int(n) for n in inp]
|
|
print(sum(changes))
|
|
freq = 0
|
|
seen = {0}
|
|
for num in itertools.cycle(changes):
|
|
freq += num
|
|
if freq in seen:
|
|
print(freq)
|
|
break
|
|
seen.add(freq)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
with open("input.txt") as inp:
|
|
main(inp.readlines())
|
|
|