EasyApplyRecursion & BacktrackingMultiple Choice
For Letter Combinations of Phone Number (LC 17) with input '23', how many combinations are there?
Apply — Tests ability to use knowledge in practical scenarios.
Answer Options
A6
B8
C9
D12
Want to see the correct answer?
Get the answer with a detailed explanation, plus practice 32+ more Recursion & Backtracking questions with adaptive quizzes and timed interviews.
See the Answer on Guru Sishya →This question is from the Recursion & Backtracking topic (Algorithms).
More Recursion & Backtracking Questions
What is the recursion base case for Combination Sum (LC 39)?
EasyWhat does the 'un-choose' step in backtracking accomplish?
EasyWhat is the key difference between permutations and combinations in backtracking?
Medium-EasyIn backtracking, why must you push `[...path]` instead of `path` to the result?
Medium-EasyTime complexity of generating all permutations of n distinct elements?
Medium-Easy