We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 338b050 commit 7363421Copy full SHA for 7363421
puzzles/solutions/2022/d01/p2.py
@@ -8,6 +8,7 @@ def get_answer(input_text: str):
8
inventories = p1.get_inventories(input_text)
9
sums = p1.get_calories_sums(inventories)
10
11
+ descending_calories = sorted(sums, reverse=True)
12
13
14
if __name__ == "__main__":
0 commit comments