Question: ; Returns a list containing the original list's values modulo c. ; *** You are required to use the built-in function map in your solution!
; Returns a list containing the original list's values modulo c. ; *** You are required to use the built-in function map in your solution! *** ; lst is a flat list of integers and c is an integer )
; Returns a list containing only the elements divisible by 10 from the ; input list lst ; *** You are required to use the built-in function filter in your solution! *** ; lst is a flat list of integers (define (divisibleBy10 lst) ; TODO: Fill this in ; use filter '() ; stub -- modify accordingly )
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
