@extra-array/permutations
TypeScript icon, indicating that this package has built-in type declarations

2.10.19 • Public • Published

Lists all possible permutations. 📦 😺 🏃 📼 🌔 📜 📰 📘

Similar: permutation, permutations, hasPermutation.

This is part of package extra-array.


array.permutations(x, [n]);
// x: an array
// n: number of values (-1 => any)
const array = require("extra-array");

[...array.permutations([1, 2])];
// [ [], [ 1 ], [ 2 ], [ 1, 2 ], [ 2, 1 ] ]

[...array.permutations([1, 2, 3])];
// [
//   [],          [ 1 ],
//   [ 2 ],       [ 3 ],
//   [ 1, 2 ],    [ 1, 3 ],
//   [ 2, 1 ],    [ 2, 3 ],
//   [ 3, 1 ],    [ 3, 2 ],
//   [ 1, 2, 3 ], [ 1, 3, 2 ],
//   [ 2, 1, 3 ], [ 2, 3, 1 ],
//   [ 3, 1, 2 ], [ 3, 2, 1 ]
// ]

[...array.permutations([1, 2, 3], 2)];
// [ [ 1, 2 ], [ 1, 3 ], [ 2, 1 ], [ 2, 3 ], [ 3, 1 ], [ 3, 2 ] ]


References

Package Sidebar

Install

npm i @extra-array/permutations

Weekly Downloads

9

Version

2.10.19

License

MIT

Unpacked Size

5.37 kB

Total Files

8

Last publish

Collaborators

  • wolfram77