Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

It's a LISP programming problems.. I need to make a function !! can you help with any of these questions?? 11-a. (car-string n l) :

It's a LISP programming problems.. I need to make a function !! can you help with any of these questions??

11-a. (car-string n l) :

I need to make car-string function that prints out the first list of length n..........

(car-string 3 (a b c d e)) = (a b c)

(car-string 4 (a b c d e)) = (a b c d)

11-b. (equal-except n l1 l2) : For the two same length list l1,l2 if the number of different letters between two list is same or smaller than n it's T if it's bigger than nil..

I need to make equal except function

(equal-except 2 (a b c d) (b b c c)) = T

(equal-except 3 (a b c d e) (e f g a b) = nil

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Handbook Of Relational Database Design

Authors: Candace C. Fleming, Barbara Von Halle

1st Edition

0201114348, 978-0201114348

More Books

Students also viewed these Databases questions

Question

What is NoInformation rate?

Answered: 1 week ago