-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path17.js
40 lines (38 loc) · 845 Bytes
/
17.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
/**
* @param {string} digits
* @return {string[]}
*/
const map = {
1: [],
2: ["a", "b", "c"],
3: ["d", "e", "f"],
4: ["g", "h", "i"],
5: ["j", "k", "l"],
6: ["m", "n", "o"],
7: ["p", "q", "r", "s"],
8: ["t", "u", "v"],
9: ["w", "x", "y", "z"]
};
var letterCombinations = function(digits) {
// yao qiu 123 => 23=> 3
if (!digits) {
return [];
}
let res = [];
function __combinations__(digits) {
if (digits.length > 1) {
let left = digits[0];
__combinations__(digits.substring(1));
res = res.reduce((pre, curr) => {
pre.push(...map[left].map(char => char + curr));
return pre;
}, []);
} else {
res = map[digits];
}
}
__combinations__(digits);
return res;
};
console.log(letterCombinations("23"));
debugger;