[Solved]Write Function Called Map2 Takes Function F 2 Lists 11 12 Returns List Produced Applying F Q37126194

write a function called map2 that takes a function f and 2 lists 11 and 12 and returns the list that is produced by applying the function to one element from each of the lists in turn. For example, the code (in some made-up Javascript-like language): function add (a1,a2) return a1+a2;} map2 (add,[1,2,3], [4,5,6]) Smalltalk: Elixir: askell: Rust: Show transcribed image text write a function called map2 that takes a function f and 2 lists 11 and 12 and returns the list that is produced by applying the function to one element from each of the lists in turn. For example, the code (in some made-up Javascript-like language): function add (a1,a2) return a1+a2;} map2 (add,[1,2,3], [4,5,6]) Smalltalk: Elixir: askell: Rust:
Expert Answer
Answer to write a function called map2 that takes a function f and 2 lists 11 and 12 and returns the list that is produced by appl… . . .
OR

