Little Matrix Multiplication

Given two 2×2 matrices, calculate the product of the two matrices. The product of two 2×2 matrices w…

Click here to read the complete problem statement.


If you need help solving this problem, mention your approach and ask specific questions. Please avoid sharing your code and asking the Community to figure out “what’s wrong”.

is numpy not allowed for this?

Since numpy is a third party library I don’t think you can use it.
Anyway the problem is simple enough to solve without numpy.

1 Like