Generate all possible letter combinations for a string of digits using a phone keypad.
Constraints
Example
```python
# Example 1
print(letter_combinations("23"))
# Output: ['ad', 'ae', 'af', 'bd', 'be', 'bf', 'cd', 'ce', 'cf']
# Example 2
print(letter_combinations("")))
# Output: []
# Example 3
print(letter_combinations("2"))
# Output: ['a', 'b', 'c']
```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints