Evaluate binomial coefficients: Difference between revisions

m
→‎optimized: changed section header wording.
m (→‎{{header|REXX}}: elided an errant character in the header.)
m (→‎optimized: changed section header wording.)
Line 1,172:
===optimized===
This REXX version takes advantage of reducing the size (product) of the numerator,
<br>plusand also, only two (factorial) products are calculated.
<lang rexx>/*REXX program calculates binomial coefficients (aka, combinations). */
numeric digits 100000 /*allow some gihugeic numbers. */