Number.Permutations
Returns the number of permutations.
function (optionalsetSize
as nullable any, optionalpermutationSize
as nullable any) as nullable any
Returns the number of permutations that can be generated from a number of items,
setSize
, with a specified permutation size, permutationSize
.Number.Operations
Find the number of permutations from a total of 5 items in groups of 3.
Number.Permutations(5, 3)
60
Last modified 4yr ago