Clean day 15
This commit is contained in:
parent
7c6bfc0ac1
commit
b8cc585455
|
@ -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))
|
||||||
|
|
Loading…
Reference in a new issue