[LeetCode in Python] 17 (M) letter combinations of a phone number 电话号码的字母组合

Posted ET民工[源自火星]

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode in Python] 17 (M) letter combinations of a phone number 电话号码的字母组合相关的知识,希望对你有一定的参考价值。

题目:

https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number/

给定一个仅包含数字?2-9?的字符串,返回所有它能表示的字母组合。
给出数字到字母的映射如下(与电话按键相同)。
注意 1 不对应任何字母。

技术图片

示例:

输入:"23"
输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].
说明:
尽管上面的答案是按字典序排列的,但是你可以任意选择答案输出的顺序。

解题思路

标准DFS套路,注意dfs()前后一行的处理。

代码

class Solution:
    def letterCombinations(self, digits: str) -> List[str]:
        # - sanity check
        if not digits:
            return []

        # - digit -> chars
        digit_dict = {
            '2': 'abc',
            '3': 'def',
            '4': 'ghi',
            '5': 'jkl',
            '6': 'mno',
            '7': 'pqrs',
            '8': 'tuv',
            '9': 'wxyz'
        }

        res = []

        # - dfs
        def dfs(index, s):
            # - return
            if index == len(digits):
                res.append(s)
                return

            # - for every branches
            for c in digit_dict[digits[index]]:
                s += c
                dfs(index+1, s)
                s = s[:-1]
        
        # - from digits[0]
        dfs(0, '')

        return res

以上是关于[LeetCode in Python] 17 (M) letter combinations of a phone number 电话号码的字母组合的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode算法题python解法:24. Swap Nodes in Pairs

LeetCode 467 - Unique Substrings in Wraparound String - Medium (Python)

[LeetCode in Python] 79 (M) word search 单词搜索

LeetCode算法题python解法:25. Reverse Nodes in k-Group

[LeetCode&Python] Problem 700. Search in a Binary Search Tree

Python 解LeetCode:33. Search in Rotated Sorted Array