Posts by Iago Lourenço • 11 points
2 posts
-
1
votes1
answer96
viewsA: Remove multiple elements from a list [COMMON LISP]
I found a solution in Stackoverflow gringo, follow link: https://stackoverflow.com/questions/46574567/lisp-how-to-remove-list-of-elements-from-list Using the function SET-DIFFERENCE Entrada: >…
-
0
votes1
answer96
viewsQ: Remove multiple elements from a list [COMMON LISP]
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…