Problems / Stack / Generate Parentheses
#24 Medium Time O(4^n/√n) Space O(n) Animated

Generate Parentheses

Generate all combinations of well-formed parentheses.

LeetCode ↗
Tutor Mode Build the mental model before you memorize the code.
  1. 1 Predict
  2. 2 Trace
  3. 3 Explain
  4. 4 Implement
Pattern LIFO state for unresolved work

Keep only items whose matching decision has not been made yet.

Approach: Backtracking with Stack
Click play to start
Step 0 / 0
Press play to start the visualization.

Steps