forked from knaxus/problem-solving-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
24 lines (21 loc) · 716 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// GET PERMUTAION OF A GIVEN STRING
let getPermutation = (str) => {
if (str.length == 1) { // BASE CASE
let array = [];
array.push(str);
return array;
}
let currentCharacter = str.charAt(0);
let restOfString = str.substring(1);
let result = [];
let returnResult = getPermutation(restOfString);
for (j = 0; j < returnResult.length; j++) {
for (i = 0; i <= returnResult[j].length; i++) {
let value = returnResult[j].substring(0, i) + currentCharacter + returnResult[j].substring(i);
result.push(value);
}
}
return result;
}
let permutation = getPermutation('abc');
console.log(permutation);