Using DrRacket R5RS.
Using Map Create a function called Pairoff that takes two parameters and returns a list containing those two parameters (Pairoff 1 a) > (1 a) Use the map higher order function to create a second function called Combiner that takes two lists and returns a list of the items contained with paired together as sub-lists (Combiner 2 3) (a b c) ) > ((1 a) (2 b) (3 c)) Show transcribed image text Using Map
OR
OR