-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Combinatorics functions (on arrays) #43175
Copy link
Copy link
Labels
comp-regular-functionRegular scalar functions: string processing, data conversion, arithmetic, math, comparison, condi...Regular scalar functions: string processing, data conversion, arithmetic, math, comparison, condi...feature
Description
arrayPermutations( [1,2,3] ) => [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], [3,2,1]]
arrayPartialPermutations( [1,2,3], 2 ) => [ [1,2], [1,3], [2,1], [2,3], [3,1], [3,2]]
arrayCombinations( [1,2,3], 2 ) => ( [1,2], [1,3], [2,3] )
maybe also factorial function to simplify some counts
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
comp-regular-functionRegular scalar functions: string processing, data conversion, arithmetic, math, comparison, condi...Regular scalar functions: string processing, data conversion, arithmetic, math, comparison, condi...feature