Skip to content

Instantly share code, notes, and snippets.

@wilkes
Created August 13, 2010 19:01
Show Gist options
  • Save wilkes/523365 to your computer and use it in GitHub Desktop.
Save wilkes/523365 to your computer and use it in GitHub Desktop.
(defn sort-by-keys [keys maps]
(sort (fn [x y]
(first (remove #(= 0 %)
(map #(compare (% x) (% y)) keys))))
maps))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment