Clean day 15

This commit is contained in:
dece 2020-12-24 03:21:36 +01:00
parent 7c6bfc0ac1
commit b8cc585455

View file

@ -3,7 +3,7 @@ from collections import defaultdict
def main(): def main():
nl = list(map(lambda s: int(s), sys.stdin.read().rstrip().split(","))) nl = list(map(int, sys.stdin.read().rstrip().split(",")))
# Part 1 # Part 1
print("Part 1:", get_nth(2020, nl)) print("Part 1:", get_nth(2020, nl))