Question: ;; Write a function that uses the schem 'map' higher ;; order function in order to compute the cubed value ;; of every element of
;; Write a function that uses the schem 'map' higher ;; order function in order to compute the cubed value ;; of every element of a list. ;; ;; You MUST use map -- NOT recursion -- to solve this. (define (cube-all lst) ;; This should only be one line! ) ;; Test cases (define (println s) (display s) (newline)) (println (cube-all '(1 2 3 4))) ;;(1 8 27 64) (println (cube-all '()));;() (println (cube-all '(0 -1 1 -2 2 3 -3)));;(0 -1 1 -8 8 27 -27)
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
