Pascal's triangle/Puzzle: Difference between revisions

(→‎{{header|jq}}: Algebraic solution)
Line 1,762:
 
These two occasions can solved trivially, but for fun, let's use the linear equation solver
at https://rosettacode.org/wiki/[[Cramer%27s_rule#jq]]:
<syntaxhighlight lang=jq>
include "rc-cramers-rule";
 
cramer([[1,1], [2,1]] ; [13, 18])
2,442

edits