Class Permutations


  • public class Permutations
    extends Object
    Generate all possible permutations of the input list May study https://www.quickperm.org/ as an faster alternative.
    Author:
    martin
    • Constructor Detail

      • Permutations

        public Permutations()
    • Method Detail

      • of

        public static <E> List<List<E>> of​(List<E> original)