Skip to content

Instantly share code, notes, and snippets.

@d11wtq
Created June 4, 2012 11:39
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 d11wtq/2867873 to your computer and use it in GitHub Desktop.
Save d11wtq/2867873 to your computer and use it in GitHub Desktop.
; Remove a given member from a list
(define rember
(lambda (a lat)
(cond
((null? lat) '())
((eq? (car lat) a) (cdr lat))
(else (cons (car lat)
(rember a (cdr lat)))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment