remove
(my_remove (car list) (cdr list)) should be a lambda expression
(defun my_remove (list) (cond ;;;Start condition ((null list);;;check to see if the list is null 0);;;if null then return zero ((eql (car list) (cdr list));;;check the list to see if there are duplicates ((my_remove (car list) (cdr list)) (my_remove (cdr list)));;;if duplicates than skip and continue (t (cons (car list) (my_remove (cdr list)))))));;;the result of the list
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)