Search found 1 match

by Pytty55
Sat Aug 18, 2018 1:14 am
Forum: Homework
Topic: function which builds, from a list, a list without the eleme
Replies: 1
Views: 12804

function which builds, from a list, a list without the eleme

I'm trying to write a function which builds, from a list, a list without the elements that begin with a given letter, and by using char and string; example: (remove 'n '(nose naked retired art friend)) ==> (art friend retired) What I did so far : (defun my-remove (r list) (cond ((not list) nil) ((eq...