diff options
Diffstat (limited to '2022')
-rw-r--r-- | 2022/puzzle-1.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/2022/puzzle-1.py b/2022/puzzle-1.py deleted file mode 100644 index 19ccfe2..0000000 --- a/2022/puzzle-1.py +++ /dev/null @@ -1,8 +0,0 @@ -inp = None -with open('1-input', 'r') as fp: - inp = fp.read() -sums = sorted([sum([int(entity) for entity in entity_str.split("\n") if entity != '']) for entity_str in inp.split("\n\n")]) -print(f"round 1: {sums[-1]}") -print(f"round 2: {sums[-1]} {sums[-2]}, {sums[-3]}, {sum(sums[-3:])}") - - |