给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。
给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。
示例:
输入:“23”
输出:[“ad”, “ae”, “af”, “bd”, “be”, “bf”, “cd”, “ce”, “cf”].
递归解法
class Solution:
def letterCombinations(self, digits: str) -> List[str]:
if len(digits) == 0:
return []
l = ['','','abc','def','ghi','jkl','mno','pqrs','tuv','wxyz']
if len(digits) == 1:
return [c for c in l[int(digits[0])]]
else:
return [c+lst for c in l[int(digits[0])] for lst in self.letterCombinations(digits[1:])]