Question: language is scheme language is scheme (25 pts) Write a function (min-above-min L1 L2). L1 and L2 are both simple lists, which do not contain

(25 pts) Write a function (min-above-min L1 L2). L1 and L2 are both simple lists, which do not contain nested lists. Both lists may have non-numeric elements. The result of the function is the minimum of the numbers in L1 that are larger than the smallest number in L2. If there is no number in L2, all the numbers in L1 should be used to calculate the minimum. If there is no number in L1 larger than the smallest number in L2, the result is false (#F). For example, the result of (min-above-min '(2 a 1 3) '(b 5 3 1)) should be 2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
