From 45b35f4a181e609640cdee2fff5cfee4da2a8a73 Mon Sep 17 00:00:00 2001 From: Pete Looney Date: Mon, 12 Oct 2020 17:23:23 -0500 Subject: [PATCH] fixed trailing whitespace --- Maths/MatrixMultiplication.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Maths/MatrixMultiplication.js b/Maths/MatrixMultiplication.js index 54ec2cd33..306c689f6 100644 --- a/Maths/MatrixMultiplication.js +++ b/Maths/MatrixMultiplication.js @@ -1,7 +1,6 @@ // Wikipedia URL for General Matrix Multiplication Concepts: https://en.wikipedia.org/wiki/Matrix_multiplication -// This algorithm has multiple functions that ultimately check if the inputs are actually matrices and if two Matrices (that can be different sizes) can be multiplied together. -// If they can be, then the matrixMult function returns the product of the two matrices. I have included two test scenarios in the file. The first is the multiplication of two +// This algorithm has multiple functions that ultimately check if the inputs are actually matrices and if two Matrices (that can be different sizes) can be multiplied together. // matrices that are of the same size [2x2]x[2x2], and the second is the multiplication of two matrices that are not the same size [2x3]x[3x2]. // MatrixCheck tests to see if all of the rows of the matrix inputted have similar size columns