Lisp sublist
Define a sublist function that takes two lists as arguments. It will return true (T) and all sublist indices if the first list appears as a contiguous sub list somewhere within the second list, and false (f) otherwise. For example: (sublist ‘(c d e) ‘(a b c d e c d e f g)) ==> […]
Read More »