T TextTools

Permutation Generator

Generate every ordered arrangement of your items — full permutations, or pick a smaller k for partial arrangements.

Advertisement

How to use Permutation Generator

  1. Enter your items one per line.
  2. Leave k blank to use every item, or set a smaller number for partial permutations.
  3. Pick how items inside one permutation should be joined.
  4. Click Generate.

What is Permutation Generator?

Given a list of items (one per line), this tool returns every distinct ordering. Set k smaller than the list length to get partial permutations P(n, k). Because permutations explode factorially, the output is capped at 10,000 entries — a warning appears when the cap kicks in so you know there are more arrangements possible.

Advertisement

FAQ

Why is the output capped?
Permutation counts grow factorially — even ten items produce 3.6 million orderings. The 10,000 cap keeps the browser responsive.
Does it dedupe identical items?
No. Items are treated as distinct by position, even if their text matches, so repeated entries produce repeated permutations.

Related tools