about summary refs log tree commit diff
path: root/aoc/2024/01/part-one.py
blob: 2a2421ebd5438575331f2027cfa068d33bd24cce (plain) (blame)
1
2
3
4
from sys import stdin

left, right = zip(*((int(a), int(b)) for a, b in map(str.split, stdin)))
print(sum(map(abs, map(int.__sub__, sorted(left), sorted(right)))))