Letter Combinations of a Phone Number
Problem
Input: digits = "23" Output: ["ad","ae","af","bd","be","bf","cd","ce","cf"]Input: digits = "" Output: []Input: digits = "2" Output: ["a","b","c"]
Pseudocode
Solution
Time and Space Complexity
Time
Space
Last updated
