For starters, forgive my math terminology ignorance (I'll edit this question, once errors in my vocabulary are pointed out).
How can I print a complete set of 3 element permutation of a 10 element vector in R?
Let's assume a vector consists of 10 unique letters A to J
x<- LETTERS[seq( from = 1, to = 10 )]
I'd like to list (print) all possible 3 unique element permutations, for example:
ABC, ACB, ABD, ADB ... etc
Thank you for any hints