From b8cc585455f306c1a725106b2060b81daced3efa Mon Sep 17 00:00:00 2001 From: dece Date: Thu, 24 Dec 2020 03:21:36 +0100 Subject: [PATCH] Clean day 15 --- 2020/day15.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2020/day15.py b/2020/day15.py index 32e4861..df0639b 100644 --- a/2020/day15.py +++ b/2020/day15.py @@ -3,7 +3,7 @@ from collections import defaultdict 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 print("Part 1:", get_nth(2020, nl))