mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
35 lines
432 B
Markdown
35 lines
432 B
Markdown
# heap-algorithm
|
|
|
|
Created by [@Divlo](https://github.com/Divlo) on 8 November 2021.
|
|
|
|
## Instructions
|
|
|
|
Write a program that generates all possible unique permutations of a string.
|
|
|
|
## Source
|
|
|
|
- [Heap's Algorithm - Wikipedia](https://en.wikipedia.org/wiki/Heap%27s_algorithm)
|
|
|
|
## Examples
|
|
|
|
### Example 1
|
|
|
|
#### Input
|
|
|
|
```txt
|
|
abc
|
|
```
|
|
|
|
#### Output
|
|
|
|
```txt
|
|
abc
|
|
bac
|
|
cba
|
|
bca
|
|
cab
|
|
acb
|
|
```
|
|
|
|
See the `test` folder for examples of input/output.
|