Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Hi! I was wondering if you could help me with the following LISP programming question: Use do to define (minimum lst) which returns the minimum

Hi! I was wondering if you could help me with the following LISP programming question:

Use do to define (minimum lst) which returns the minimum of a list of numbers. You may want to define an auxiliary function (smaller x y), using if, which returns the smaller of two numbers.

So far I have this:

(defun smaller (x y)

"(x y) Returns the smaller of two numbers."

(if (< x y) x y))

(defun minimum (lst)

"(lst) Returns the minimum of a list of numbers."

(do ((numbers lst (cdr numbers))

(min 0))

((smaller min (car lst))

But I'm not sure how to finish the second function in LISP...

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

Step: 3

blur-text-image

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

Sams Teach Yourself Beginning Databases In 24 Hours

Authors: Ryan Stephens, Ron Plew

1st Edition

067232492X, 978-0672324925

More Books

Students also viewed these Databases questions

Question

1. Understand how verbal and nonverbal communication differ.

Answered: 1 week ago