aoc2021/d07/d07_1.py

3 lines
129 B
Python
Raw Permalink Normal View History

2021-12-08 01:26:52 +00:00
L=list(map(int,__import__("sys").stdin.read().split(",")))
2021-12-08 01:36:58 +00:00
print(min(sum(abs(l-i) for l in L) for i in range(min(L), max(L)+1)))