Skip to content

Instantly share code, notes, and snippets.

@cljforge
Created December 22, 2015 10:48
Show Gist options
  • Save cljforge/d5285f1cc1d51b7c085b to your computer and use it in GitHub Desktop.
Save cljforge/d5285f1cc1d51b7c085b to your computer and use it in GitHub Desktop.
(defn sort-ips [ips]
(sort (fn [left right]
(let [left (read-string (str/replace left #"\." ""))
right (read-string (str/replace right #"\." ""))]
(< left right)))
ips))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment