Assignment title: Information
Implement a recursive function called FILTER-OUT-THE in Common Lisp. FILTER-OUT-THE takes a list of symbols and returns a list from which all instance of the symbols THE have been removed. The prototype of FILTEROUT-THE is: (defun filter-out-the (list) Your code goes here ) Sample Run: [1] (filter-out-the '(There are the boy and THE girl)) Return: (THERE ARE BOY AND GIRL) Note: You cannot use predefined function to do the elimination. You must implement it yourself. 2. Write a procedure called SCHEDULE takes a weekday as argument and retrieves a list of your commitments on that day. The procedure's prototype is: (defun schedule (day) Your code goes here )