Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 609 Bytes

File metadata and controls

23 lines (15 loc) · 609 Bytes

math-permutation(数学排列)

Install

npm i math-permutation --save

Usage

var permutation = require('math-permutation')
var arr = [1, 2, 3]

//Get all conditions that conbine two element of the the arr(different order different condition)
permutation.amn(arr, 2)

//Get all conditions that conbine two element of the the arr(different order different condition and element can repeat)
permutation.amnWithRepetition(arr, 2)

Note

Only support for array of String or Number


See test for more details