Nat-As / permutations

simple permutations example for school

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

permutations

simple permutations example for school

About

This program will take a string and print all possible permutations. For example the string "ABC" will result in:
ABC
ACB
CAB
CBA
BCA
BAC

Note:

For a string of length n, there exists n! permutations.

About

simple permutations example for school

License:MIT License


Languages

Language:C++ 77.8%Language:CMake 22.2%