diff --git a/subjects/matrix_mult/README.md b/subjects/matrix_mult/README.md index 5305762b..e4b4b0c7 100644 --- a/subjects/matrix_mult/README.md +++ b/subjects/matrix_mult/README.md @@ -4,15 +4,12 @@ Implement the methods: -- `number_of_cols` which returns the number of columns of the matrix. +- `number_of_cols`: which returns the number of columns in the matrix. +- `number_of_rows`: which returns the number of rows in the matrix. +- `row`: which returns the `n`th row in the matrix. +- `col`: which returns the `n`th column in the matrix. -- `number_of_rows` which returns the number of rows of the matrix. - -- `row(n)` which returns the `n`th row in the matrix. - -- `col(n)` which returns the `n`th column in the matrix. - -Define the matrix multiplication by implementing the std::ops::Mul for the type matrix +Define the matrix multiplication by implementing the `std::ops::Mul` for the type matrix ### Expected Functions