Challenge: Linear Algebra Foundations #4- Matrix Multiplication

Subdomeniu: Linear Algebra Foundations (linear-algebra-foundations)

Scor cont: 2.0 / 2

Submission status: Accepted

Submission score: 1.0

Submission ID: 464733220

Limbaj: python3

Link challenge: https://www.hackerrank.com/challenges/linear-algebra-foundations-4-matrix-multiplication/problem

Cerinta

**Matrix Multiplication**  

Two matrices of size 3x3 are multiplied as shown below. Find the integers $A$, $B$, $C$, $D$, $E$, $F$, $G$, $H$, $I$ in the resultant matrix. 

	[1  2  3 ]        [4  5  6 ]      [A  B  C ]
	[2  3  4 ]   x    [7  8  9 ]   =  [D  E  F ] 
	[1  1  1 ]        [4  5  7 ]      [G  H  I ]
 
 
In the text box below, enter each of the 9 integers, $A$, $B$, $C$, ... $I$ on a new line.

Cod sursa

print('30\n36\n45\n45\n54\n67\n15\n18\n22')
HackerRank Linear Algebra Foundations – Linear Algebra Foundations #4- Matrix Multiplication