FREQUENTLY ASKED QUESTIONS APRIL 17 - Due to typo in description of number 5, number 5 and 6 are optional (no points off for leaving out). APRIL 16 - 2nd posting Lisp Homework due date changed: due in class Thursday April 19. No late LISP assignments will be accepted after that. APRIL 16 Q: What is the corrected version of maxnum given in class? A: (defun maxnum (L) (if (null L) nil (let ((head (car L)) (temp (maxnum (cdr L)))) (if (> head temp) head temp)))) APRIL 12 Q: What were those functions you defined in class again? A: (defun get-block (name world) (car (cdr (assoc name world)))) (defun get-color (block) (car (cdr (assoc 'color block)))) (get-color (get-block 'A world1)) returns red