diff --git a/helpers.rkt b/helpers.rkt index c0a37f2..47a1758 100644 --- a/helpers.rkt +++ b/helpers.rkt @@ -25,7 +25,7 @@ [(memq (car s1) s2) (cons (car s1) (list-intersection (cdr s1) s2))] [else - (list-difference (cdr s1) s2)])) + (list-intersection (cdr s1) s2)])) ;; Trying to work around what looks like a bug in typed racket: