/**
* @function 数组排列组合
* [1,2,3] => 123 132 213 231 321 312
*/
function permutationCombination(arr) {
if (arr.length === 1) {
return [arr];
}
const res = [];
arr.forEach((val, index) => {
const childArr = [...arr];
childArr.splice(index, 1);
res.push(
...permutationCombination(childArr).map(item => [val, ...item])
);
});
return res;
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。