Question: IN HASKELL Declare the type and define a function that takes two lists of numbers and returns a list, which its members are the product
IN HASKELL
Declare the type and define a function that takes two lists of numbers and returns a list, which its members are the product of corresponding input lists. For instance
fun [3, 7, 9, 0] [2, 8, 11, 3, 8, 7] returns [6, 56, 99, 0]
Note: if either of input list is shorter than the other one, the extras are neglected.
Please write two versions: one use list comprehension and zip (not zipWith). And the second one use recursion only
IN HASKELL
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
