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.
1 | Input:Digit string "23" |
递归,第一个字符和其余字符的结果的组合为最后的结果
1 | class Solution { |