欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

电话号码的字母组合 python3

程序员文章站 2022-04-22 12:10:44
目录一、题目内容二、解题思路三、代码一、题目内容给定一个仅包含数字2-9的字符串,返回所有它能表示的字母组合。给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。示例:输入:"23"输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].说明:尽管上面的答案是按字典序排列的,但是你可以任意选择答案输出的顺序。二、解题思路每次记录上一个字符组合(prefix)和.....

目录

一、题目内容

二、解题思路

三、代码


一、题目内容

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

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

电话号码的字母组合 python3

示例:

输入:"23"

输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].

说明:

尽管上面的答案是按字典序排列的,但是你可以任意选择答案输出的顺序。

二、解题思路

每次记录上一个字符组合(prefix)当前的字符(suffix)所代表的字符组合即可。

三、代码

class Solution(object):
    def letterCombinations(self, digits):
        """
        :type digits: str
        :rtype: List[str]
        """
        nums = {
            '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'],
        }
        ans = ['']
        if digits == '':
            ans = []
            return ans
        ans2 = []
        for num in digits:
            if len(ans2) != 0:
                ans = ans2
                ans2 = []
            for pre in ans:
                for suf in nums[num]:
                    ans2.append(pre+suf)
        return ans2

if __name__ == '__main__':
    test = "234"
    s = Solution()
    ans = s.letterCombinations(test)
    print(ans) 

本文地址:https://blog.csdn.net/qq_36556893/article/details/108232121