Created
August 16, 2017 15:19
-
-
Save Arnot/741f1fbda2071314161e7b5b60bc6f54 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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