Created
January 18, 2018 15:39
-
-
Save augustl/e35f4746b8600d4ab203eb4ede0bb2d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(let [items-by-month (group-by get-month items)] | |
(mapcat (fn [month] (sort-by get-date (get items-by-month month))) | |
(sort (keys items-by-month)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment