Skip to content

Instantly share code, notes, and snippets.

@kurogelee
Created April 2, 2014 14:35
Show Gist options
  • Save kurogelee/9935441 to your computer and use it in GitHub Desktop.
Save kurogelee/9935441 to your computer and use it in GitHub Desktop.
Clojureでreduceをbreakする方法 ref: http://qiita.com/kurogelee/items/be71b35d96b6e6b0660b
user=> (reduce #(if (< 9999 %1) (reduced %1) (* %1 %2)) (range 1 10000))
40320
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment