Question: In HASKELL Write a function that will take two list of lists, and multiply one with another. multListt [[1,1,1],[3,4,6],[1,2,3]] [[3,2,2],[3,4,5],[5,4,3]] ans: [[3,2,2],[9,16,30],[5,8,9]] You are allowed
In HASKELL
Write a function that will take two list of lists, and multiply one with another.
multListt [[1,1,1],[3,4,6],[1,2,3]] [[3,2,2],[3,4,5],[5,4,3]]
ans: [[3,2,2],[9,16,30],[5,8,9]]
You are allowed to use any higher order function/List Comprehension(if you want to use) to solve this problem.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
