I feel like those threads would make great research opportunities. We often hear people say that code should be for people to read, incidentally for machines to execute, just be amazed at how much the readability varies from answer to answer.
Skimming some, the core of Part 1 after people have parsed and sorted:
Seq.map2 (fun x y -> abs (x - y)) xs ys |> Seq.sum
APL:
+/|-⌿
Haskell:
map abs $ zipWith (-) column2 column1
and then all the submissions which don't do anything like this, and have manual loops and indexing and clunky data representations or performance-optimized data representations, etc. etc.