Files
advent-of-code/2022/01/part2

16 lines
304 B
Plaintext
Raw Normal View History

2022-12-01 17:18:01 +00:00
#!/usr/bin/env python
elves = []
with open('input') as f:
elf = []
for line in f:
if line == "\n":
elves.append(elf)
elf = []
else:
calories = int(line)
elf.append(calories)
print(sum(sorted(map(sum, elves), reverse=True)[0:3]))