2018暑假第十二題
阿新 • • 發佈:2018-12-06
題目:
給定一個僅包含數字 2-9
的字串,返回所有它能表示的字母組合。
給出數字到字母的對映如下(與電話按鍵相同)。注意 1 不對應任何字母。
示例:
輸入:"23" 輸出:["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"].
說明:
儘管上面的答案是按字典序排列的,但是你可以任意選擇答案輸出的順序。
題目連結:https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number/description/
答案:
class Solution(object):
def letterCombinations(self, digits):
"""
:type digits: str
:rtype: List[str]
"""
self.ma = {'2':'abc','3':'def','4':'ghi','5':'jkl','6':'mno','7':'pqrs','8':'tuv','9':'wxyz'}
if not digits:
return []
res = [ i for i in self.ma[digits[0]]]
for i in digits[1:]:
res = [ m+n for m in res for n in self.ma[i] ]
return res