Challenge: Determinant of the matrix #2

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

Scor cont: 5.0 / 5

Submission status: Accepted

Submission score: 1.0

Submission ID: 464733225

Limbaj: python3

Link challenge: https://www.hackerrank.com/challenges/determinant-of-the-matrix-2/problem

Cerinta

Let **A** be a 3 × 3 matrix with **|A|** = 5. Find each of the following -

1. |A<sup>T</sup>|
2. |2A|

Your answer should have first answer followed by the second answer separated by a line(resembling this) -

<pre>
5
6
</pre>

Cod sursa

print('5\n40')
HackerRank Linear Algebra Foundations – Determinant of the matrix #2