Skip to content

Instantly share code, notes, and snippets.

@tequilasunset
Created February 26, 2011 13:36
Show Gist options
  • Select an option

  • Save tequilasunset/845204 to your computer and use it in GitHub Desktop.

Select an option

Save tequilasunset/845204 to your computer and use it in GitHub Desktop.
(define (subsets s)
(if (null? s)
(list '())
(let ((rest (subsets (cdr s))))
(append rest (map (lambda (x)
(cons (car s) x))
rest)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment