friends and sirs...
If I have an NSArray of NSNumbers like this: 1, 2, 3
Then the set of all possible permutations would look something like this:
1
2
3
1 , 2
1 , 3
2 , 3
2 , 1
3 , 1
3 , 2
1 , 2 , 3
1 , 3 , 2
2 , 1 , 3
...
What's a good way to do this in XCode?
Please help me...
thanks.