算法之leetcode-17

2019-08-30 10:11:03 浏览数 (1)

代码语言:python代码运行次数:0复制
class Solution:
    def letterCombinations(self, digits):
        if not digits:
            return []
        type_dic = {
            "2": "abc",
            "3": "def",
            "4": "ghi",
            "5": "jkl",
            "6": "mno",
            "7": "pqrs",
            "8": "tuv",
            "9": "wxyz"
        }
        res = [""]
        for d in digits:
            temp = []
            if d in type_dic.keys():
                for c in type_dic[d]:
                    for r in res:
                        temp.append(r   c)
                res = temp
        return res

0 人点赞