Tcdian / keep

今天不想做,所以才去做。
MIT License
5 stars 1 forks source link

17. Letter Combinations of a Phone Number #314

Open Tcdian opened 3 years ago

Tcdian commented 3 years ago

17. Letter Combinations of a Phone Number

给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。

给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。

Example

Input: "23"
Output: ["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].

Note

Tcdian commented 3 years ago

Solution

/**
 * @param {string} digits
 * @return {string[]}
 */
var letterCombinations = function(digits) {
    if (digits.length === 0) {
        return [];
    }
    const dictionary = new Map([
        ['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']],
    ]);
    const result = [];
    const combination = [];
    backtracking(0);
    return result;

    function backtracking(index) {
        if (index === digits.length) {
            result.push(combination.join(''));
            return;
        }
        let letters = dictionary.get(digits[index]);
        for (let i = 0; i < letters.length; i++) {
            combination.push(letters[i]);
            backtracking(index + 1);
            combination.pop();
        }
    }
};
function letterCombinations(digits: string): string[] {
    if (digits.length === 0) {
        return [];
    }
    const dictionary = new Map([
        ['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']],
    ]);
    const result: string[] = [];
    const combination: string[] = [];
    backtracking(0);
    return result;

    function backtracking(index: number) {
        if (index === digits.length) {
            result.push(combination.join(''));
            return;
        }
        let letters = dictionary.get(digits[index])!;
        for (let i = 0; i < letters.length; i++) {
            combination.push(letters[i]);
            backtracking(index + 1);
            combination.pop();
        }
    }
};