code-reviews

jaihindhreddy 2018-12-02T06:27:07.000900Z

I just solved the first couple problems of advent of code, and wondering if I use ->> too much. https://gist.github.com/jaihindhreddy/f272a0055389e2b55129f2bc8cb8233b

pithyless 2018-12-02T19:10:48.001500Z

Is it just me, or won’t part-2 not find correct matches if they are only different in the first character?

pithyless 2018-12-02T19:11:42.001700Z

The (sort ..) (partition ..) seems to imply that potential candidates are next to each other.

jaihindhreddy 2018-12-02T20:58:57.001900Z

Oops! You're right. It's broken. Fixed it. Thanks a lot for the feedback! More feedback is always appreciated.

jaihindhreddy 2018-12-02T06:27:27.001400Z

How can I make this code idiomatic (assuming it isn't)?