adventofcode

Happy Advent 2020! Please put answers in the pinned threads or create one if it does not exist yet. | https://github.com/adventofcode-clojurians/adventofcode-clojurians | Join the private leaderboard with code 217019-4a55b8eb
abarylko 2016-12-03T06:26:11.000016Z

Day3 done!

fellshard 2016-12-03T06:58:10.000017Z

Made it on the leaderboard for the gold star!! (even if it is near the bottom)

fellshard 2016-12-03T06:58:45.000018Z

This one was perfect for Clojure, too; part B was accomplished with just two additional lines.

fellshard 2016-12-03T07:01:24.000019Z

Well, and one function. I find myself writing transpose a lot...

fellshard 2016-12-03T07:02:26.000020Z

(defn transpose [s] (vec (apply map vector s)))

abarylko 2016-12-03T17:21:15.000002Z

good job @fellshard !