Implemented suggesting improvements

This commit is contained in:
Angelos Chalaris
2018-02-19 15:47:47 +02:00
parent 46efdf1bc0
commit c385cd66bf
17 changed files with 1126 additions and 1092 deletions

View File

@ -0,0 +1,11 @@
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;