Skip to content

Instantly share code, notes, and snippets.

@marick
Created June 15, 2010 18:49
Show Gist options
  • Save marick/439511 to your computer and use it in GitHub Desktop.
Save marick/439511 to your computer and use it in GitHub Desktop.
user=> (def meaningful-values (remove #{ [0 0] } product))
#'user/meaningful-values
user=> meaningful-values
((-1 -1) (-1 0) (-1 1) (0 -1) (0 1) (1 -1) (1 0) (1 1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment