Leetcode 17. Letter Combinations of a Phone Number | DFS | Logic Coding
Things to pay attention to:
1) The paradigm of DFS (how to store ans, how to traverse, end condition, constraint and explore)
2) The variables structure
3) Corner case for the input
4) remember to backtrack if we pass the cur varible by reference.