Count of permutation of n different items are:
A(n) = 1*2* .. *n
e.g:
[1]->{1}// 1[1,2]->{1,2}, {2,1}// 2[1,2,3]->{1,2,3}, {1,3,2}, {2,1,3}, {2,3,1}, {3,1,2}, {3,2,1}// 6
So what is the permutation of: [], (aka. empty input).
I've checked this question: Does the set of permutations of an empty set contain an empty set?
The answer said it should be 1, (aka. {}), and not 0, but what's the proof?
{∅}, just as I initialized the list in codecombList := [][]T{{}}, thanks anyway, I would check more aboutelementary set theory. – Eric Mar 29 '23 at 12:39