Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a Lisp function which takes two lists, list1 and list2, and returns true if list1 is a prefix of list2. For example, if the
Write a Lisp function which takes two lists, list1 and list2, and returns true if list1 is a prefix of list2.
For example, if the function name is IsPrefix, when you call
(IsPrefix (2) (2 3 4)), it returns true.
(IsPrefix NIL (2 3 4)), it returns true.
(IsPrefix (2 3 44) (2 3 44 100 200)), it returns true.
(IsPrefix (2 3 44) (2 3 44)), it returns true.
(IsPrefix (2) (300 400 2)), it returns false.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started