raphaelrk / Permutator

This recursively prints all the permutations of the input.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

This recursively prints all the permutations of the input.


Languages

Language:Java 100.0%