Product of square matrices P37390


Statement
 

pdf   zip   main.cc   main.py

Write a function that, given two square matrices @a@ and @b@, computes their product.

Interface

C++
typedef vector< vector<int> > Matrix;
    Matrix product(const Matrix& a, const Matrix& b);
MyPy
Matrix: TypeAlias = list[list[int]]
    def product(a: Matrix, b: Matrix) -> Matrix

Precondition

@a@ and @b@ are square matrices n×nn\times n with n0n \ge 0.

Information
Author
Jordi Petit
Language
English
Translator
Carlos Molina
Original language
Catalan
Other languages
Catalan
Official solutions
C++ Python
User solutions
C++ Python