Skip to content

Instantly share code, notes, and snippets.

@mlb-
Created December 17, 2015 20:14
Show Gist options
  • Save mlb-/2782a965e0cfd29af747 to your computer and use it in GitHub Desktop.
Save mlb-/2782a965e0cfd29af747 to your computer and use it in GitHub Desktop.
(def paper-feet
(comp #(apply + %)
(juxt (partial apply min)
(comp #(* 2 %)
(partial apply +)))
#(map (partial apply *) %)
#(partition 2 1 (take 1 %) %)
#(map (fn [x]
(Integer/parseInt x))
%)
#(.split % "x")))
(paper-feet "2x3x4")
(paper-feet "1x1x10")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment