leetcode——17. 电话号码的字母组合

中等题,还可以,可完成。

class Solution:
    def letterCombinations(self, digits: str) -> List[str]:
        if digits==‘‘:
            return ‘‘
        memo={‘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‘]}
        if len(digits)==1:
            return memo[digits]
        i=1
        r=[]
        a=memo[digits[0]]
        while i<len(digits):
            b=memo[digits[i]]
            for j in a:
                for k in b:
                    if j+k not in r:
                        r.append(j+k)
            a=r
            i+=1
            r=[]
        return a

执行用时 :40 ms, 在所有 python3 提交中击败了91.98%的用户

内存消耗 :13.8 MB, 在所有 python3 提交中击败了5.30%的用户

——2019.10.18

原文地址:https://www.cnblogs.com/taoyuxin/p/11698169.html

时间: 2024-10-31 14:06:48

leetcode——17. 电话号码的字母组合的相关文章

[LeetCode] 17. 电话号码的字母组合(回溯)

题目 给定一个仅包含数字?2-9?的字符串,返回所有它能表示的字母组合. 给出数字到字母的映射如下(与电话按键相同).注意 1 不对应任何字母. 示例: 输入:"23" 输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"]. 说明: 尽管上面的答案

Leetcode之回溯法专题-17. 电话号码的字母组合(Letter Combinations of a Phone Number)

[Leetcode]17. 电话号码的字母组合(Letter Combinations of a Phone Number) 题目描述: 给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合. 给出数字到字母的映射如下(与电话按键相同).注意 1 不对应任何字母. 示例: 输入:"23"输出:["ad", "ae", "af", "bd", "be", "bf&qu

17. 电话号码的字母组合

17. 电话号码的字母组合 暴力即可,深搜 or 迭代 class Solution { Map<Character, String[]> map = new HashMap<Character, String[]>(); public List<String> letterCombinations(String digits) { if (null == digits || digits.length() == 0) return new LinkedList<

leetcode 17 电话号码的数字组合

给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合.给出数字到字母的映射如下(与电话按键相同).注意 1 不对应任何字母. 1 class Solution { 2 List<String> temp=new ArrayList<String>(); 3 Map<String,String> map=new HashMap<String,String>(){{ 4 put("2","abc"); 5 pu

leecode 17. 电话号码的字母组合

给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合. 给出数字到字母的映射如下(与电话按键相同).注意 1 不对应任何字母. 示例: 输入:"23" 输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"]. 说明:尽管上面的答案是按字典

leetcode(9)-电话号码的字母组合

给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合. 给出数字到字母的映射如下(与电话按键相同).注意 1 不对应任何字母. 链接:https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number/ 没什么好说的,就是测试的时候别手贱多打几个数字,卡的电脑动不了 class Solution: def letterCombinations(self, digits: str): if len(digits)

LeetCode 第17题电话号码的字母组合

/*17. 电话号码的字母组合 给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合. 给出数字到字母的映射如下(与电话按键相同).注意 1 不对应任何字母. 输入:"23"输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"]. 说明:

LeetCode(17):电话号码的字母组合

Medium! 题目描述: 给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合. 给出数字到字母的映射如下(与电话按键相同).注意 1 不对应任何字母. 示例: 输入:"23" 输出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].

[LeetCode] Letter Combinations of a Phone Number 电话号码的字母组合

Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telephone buttons) is given below. Input:Digit string "23" Output: ["ad", "ae", &q