How is the algorithm or process called which calculates all unique combinations of n numbers? By unique I mean that this 1234
is the same as this 1243
.
Example: Take this 4 numbers and list all unique combinations:
1 2 3 4
Output:
1 2 3 4 12 13 14 23 24 34 123 124 134 234 1234