Skip to content

Instantly share code, notes, and snippets.

@trptcolin
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trptcolin/12f43c4b9c3cd51c9519 to your computer and use it in GitHub Desktop.
Save trptcolin/12f43c4b9c3cd51c9519 to your computer and use it in GitHub Desktop.
user=> (sequence (comp (map inc) (map #(* % %))) (range 10))
(1 4 9 16 25 36 49 64 81 100)
user=> (map (comp inc #(* % %)) (range 10))
(1 2 5 10 17 26 37 50 65 82)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment