Letter Combinations of a Phone Number
Description https://oj.leetcode.com/problems/letter-combinations-of-a-phone-number/ Difficulty: 1.5/5.0 Solution The DFS solution would be more clear, but a worse solution. It is common that the length of the string is more than several thousands. class Solution { public: vector<string> letterCombinations(string digits) { string str[]...