Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

IN RACKET Language Suppose that we have a list containing height/weight pairs for a group of people, in inches and pounds, respectively: ( (76 .

IN RACKET Language

Suppose that we have a list containing height/weight pairs for a group of people, in inches and pounds, respectively:

 ( (76 . 195) (81 . 212) (79 . 225) (78 . 206) ... ) 

We would like to know the average height of the people in the group. Use higher-order functions such as map and apply to define a Racket function named average-height. This function takes a list of height/weight pairs as its only argument and returns the the average height of the group. For example:

 > (average-height '((79 . 225))) 79.0 > (average-height '((70 . 150) (62 . 100))) 66.0

Code so far

(define average-height (lambda (height-weight-list) 'YOUR-CODE-HERE )) (define average (lambda values (/ (apply + values) (length values)))) ; ----- tests ------- (check-equal? (average-height '((79 . 225))) 79.0) (check-equal? (average-height '((70 . 150) (62 . 100))) 66.0) 

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

Database And Expert Systems Applications 33rd International Conference Dexa 2022 Vienna Austria August 22 24 2022 Proceedings Part 1 Lncs 13426

Authors: Christine Strauss ,Alfredo Cuzzocrea ,Gabriele Kotsis ,A Min Tjoa ,Ismail Khalil

1st Edition

3031124227, 978-3031124228

More Books

Students also viewed these Databases questions

Question

=+Trainers from headquarters? Local trainers? Independent trainers?

Answered: 1 week ago