Remove multiple elements from a list [COMMON LISP]

Asked

Viewed 96 times

0

I want to remove several elements from a list and return the list without these elements.

(defun removeAll (lista1 lista2)
 .
 .
 .
)

Entrada: > (removeAll '(a b c) '(a b c d))

Saída; > (d)

I’ve given it a lot of thought and I haven’t been successful.

1 answer

1

Browser other questions tagged

You are not signed in. Login or sign up in order to post.