/Permutator

This recursively prints all the permutations of the input.

Primary LanguageJava

Prints all permutations of a given input

example

C:\.....\Permutator\dist>java -jar "Permutator.jar" a b c
Picked up _JAVA_OPTIONS: -Xmx1g -Xms1g
a b c
a c b
b a c
b c a
c a b
c b a