Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
encse committed Dec 13, 2024
1 parent aea720d commit 032107b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 2024/Day13/Solution.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Solution : Solver {
long GetPrize(Machine m) {
var (a, b, p) = m;

// solve a * i + b * j = p for i and j using Kramer's rule
// solve a * i + b * j = p for i and j using Cramer's rule
var i = Det(p, b) / Det(a, b);
var j = Det(a, p) / Det(a, b);

Expand Down

0 comments on commit 032107b

Please sign in to comment.