Skip to content

Instantly share code, notes, and snippets.

@jneira
Created July 18, 2010 20:40
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 jneira/480694 to your computer and use it in GitHub Desktop.
Save jneira/480694 to your computer and use it in GitHub Desktop.
(defn in-range? [vec coords]
(boolean
(reduce #(and
(vector? %1)
(> (count %1) %2)
(%1 %2))
vec coords)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment