Skip to content

Commit

Permalink
Update docs on Fri Dec 13 07:56:10 UTC 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 13, 2024
1 parent 3dac149 commit b415787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 2024/13/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ <h2 id="problem-name">Claw Contraption</h2>
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 b415787

Please sign in to comment.