Skip to content

Instantly share code, notes, and snippets.

@Arnot
Created August 16, 2017 15:19
Show Gist options
  • Select an option

  • Save Arnot/741f1fbda2071314161e7b5b60bc6f54 to your computer and use it in GitHub Desktop.

Select an option

Save Arnot/741f1fbda2071314161e7b5b60bc6f54 to your computer and use it in GitHub Desktop.
(defun filter (&rest args) ; args = list of all arguments
(let ((factors (list -1 -1 -1
-1 8 -1
-1 -1 -1)))
(reduce '+ (map '* factors args))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment