Skip to content

Instantly share code, notes, and snippets.

@mikamix
Created February 6, 2014 10:30
Show Gist options
  • Select an option

  • Save mikamix/8841780 to your computer and use it in GitHub Desktop.

Select an option

Save mikamix/8841780 to your computer and use it in GitHub Desktop.
(define (union-set set1 set2)
(cond ((null? set1) set2)
((element-of-set? (car set1) set2) (union-set (cdr set1) set2))
(else (cons (car set1)
(union-set (cdr set1) set2)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment