-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCombinationsString.js
58 lines (46 loc) · 1.31 KB
/
CombinationsString.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* Generate all combinations of a string */
//Method - 1, using for loop, push() and slice()
function stringCombinations1(str){
let combinations = []
for(let i = 0 ;i < str.length; i++) {
for( let j = i + 1; j < str.length + 1; j++) {
combinations.push(str.slice(i , j))
}
}
return combinations
}
console.log(stringCombinations1('ABC'))
//Method - 2, using while loop, charAt(), push() and concat()
function stringCombinations2(str) {
let strLength = str.length
let result = []
let currentIndex = 0
while(currentIndex < strLength) {
let char = str.charAt(currentIndex)
let x
let arrTemp = [char]
for(x in result) {
arrTemp.push("" + result[x] + char)
}
result = result.concat(arrTemp)
currentIndex++
}
return result
}
console.log(stringCombinations2("DEF"))
//Method - 3, using push() and cancat()
function stringCombinations3(str){
let tempArr = [];
let resultArr = [];
for(let i = 0; i < str.length; i++) {
tempArr = [str[i]];
let index = 0;
while(resultArr[index]) {
tempArr.push("" + resultArr[index] + str[i]);
index++;
}
resultArr = resultArr.concat(tempArr);
}
return resultArr;
}
console.log(stringCombinations3("GHI"));