fix(curriculum): typos in rosetta code (#46820)

Update rosetta code doc
This commit is contained in:
David Qian
2022-07-09 04:00:27 -04:00
committed by GitHub
parent 428de4154d
commit 5bfa2123a7

View File

@@ -8,9 +8,9 @@ dashedName: cramers-rule
# --description--
<a href="https://rosettacode.org/wiki/Cramer%27s_rule" target="_blank" rel="noopener noreferrer nofollow">Cramer's rule</a> is a formula for solving a system of linear equations by using the determinants of matrixes formed from subsets of the coefficients and right hand side values.
<a href="https://rosettacode.org/wiki/Cramer%27s_rule" target="_blank" rel="noopener noreferrer nofollow">Cramer's rule</a> is a formula for solving a system of linear equations by using the determinants of matrices formed from subsets of the coefficients and right hand side values.
The determinate of a matrix with 2 rows and two columns is given by:
The determinant of a matrix with 2 rows and two columns is given by:
$\begin{aligned}|A|={\begin{vmatrix}a&b\\\c&d\end{vmatrix}}=ad-bc.\end{aligned}$