forked from TheAlgorithms/JavaScript
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLetterCombination.js
More file actions
Latest commit
53 lines (48 loc) · 1.18 KB
/
Copy pathLetterCombination.js
File metadata and controls
53 lines (48 loc) · 1.18 KB
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
/*
*
* Letter Combinations of a Phone Number
*
* Given a string containing digits from 2-9 inclusive,
* return all possible letter combinations that the number could represent.
* Return the answer in any order.
* A mapping of digits to letters (just like on the telephone buttons) is given below.
* Note that 1 does not map to any letters.
* More info: https://leetcode.com/problems/letter-combinations-of-a-phone-number/
*/
/*
* @param {string} digits
* @returns {string[]} all the possible combinations
*/
constletterCombinations=(digits)=>{
constlength=digits?.length
constresult=[]
if(!length){
returnresult
}
constdigitMap={
2: 'abc',
3: 'def',
4: 'ghi',
5: 'jkl',
6: 'mno',
7: 'pqrs',
8: 'tuv',
9: 'wxyz'
}
constcombinations=(index,combination)=>{
letletter
letletterIndex
if(index>=length){
result.push(combination)
return
}
constdigit=digitMap[digits[index]]
letterIndex=0
while((letter=digit[letterIndex++])){
combinations(index+1,combination+letter)
}
}
combinations(0,'')
returnresult
}
export{letterCombinations}