0.0.3 • Published 3 years ago

chopsuey v0.0.3

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

Contributors Forks Stargazers Issues MIT License LinkedIn

About The Project

Chop Suey 杂碎 is a stir-fried vegetable dish usually with meat or seafood.

In honor of such wonderful food, this npm package is built to imitate the elegant mixing and matching of its ingredients through the functions in combinatorics.

This includes:

  • Subsets
  • Permutations
  • Shuffle

Installation

   npm i chopsuey

Usage

import ChopSuey from 'ChopSuey';
...
for(const subset of Chopsuey.generateSubsets(array)) {
	...
}
...
import ChopSuey from 'ChopSuey';
...
const subsets = Chopsuey.geSubsets(array);
...