Skip to content

Instantly share code, notes, and snippets.

@DavidBuchanan314
Last active December 1, 2024 06:50
Show Gist options
  • Save DavidBuchanan314/5945b034098400158cf2808e4b7077de to your computer and use it in GitHub Desktop.
Save DavidBuchanan314/5945b034098400158cf2808e4b7077de to your computer and use it in GitHub Desktop.
(
solve := lambda data: sum(
abs(a - b) for a, b in
zip(*map(sorted,zip(*(
map(int, line.split())
for line in data.split("\n")
))))
),
example := """\
3 4
4 3
2 5
1 3
3 9
3 3\
""",
challenge := open("input").read().strip(),
print("part 1:"),
print("example", solve(example)),
print("challenge", solve(challenge)),
print(),
solve2 := lambda data: (
(lists := list(zip(*(
map(int, line.split())
for line in data.split("\n")
)))),
sum(
n * lists[1].count(n)
for n in lists[0]
)
)[-1],
print("part 2:"),
print("example", solve2(example)),
print("challenge", solve2(challenge)),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment