Files
30-seconds-of-code/test/stringPermutations/stringPermutations.js
2018-08-02 13:49:33 +03:00

12 lines
341 B
JavaScript

const stringPermutations = str => {
if (str.length <= 2) return str.length === 2 ? [str, str[1] + str[0]] : [str];
return str
.split('')
.reduce(
(acc, letter, i) =>
acc.concat(stringPermutations(str.slice(0, i) + str.slice(i + 1)).map(val => letter + val)),
[]
);
};
module.exports = stringPermutations;