Skip to content

Instantly share code, notes, and snippets.

@schell
Created July 27, 2010 04:44
Show Gist options
  • Save schell/491754 to your computer and use it in GitHub Desktop.
Save schell/491754 to your computer and use it in GitHub Desktop.
(defun filter (a b)
"Filters out all items in a from b"
(if (= 0 (length a)) b
(filter (remove (first a) a) (remove (first a) b))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment