Limited Time Offer:Up to 20% off Hello Interview Premium
Up to 20% off Hello Interview Premium 🎉
Hello Interview
Learn Code
Introduction
Overview
Container With Most Water
Two Sum (Sorted Array)
3-Sum
Triangle Numbers
Move Zeroes
Sort Colors
Trapping Rain Water
Overview
Maximum Sum of Subarrays of Size K
Max Points You Can Obtain From Cards
Max Sum of Distinct Subarrays Length k
Overview
Longest Substring Without Repeating Characters
Longest Repeating Character Replacement
Overview
Can Attend Meetings
Insert Interval
Non-Overlapping Intervals
Merge Intervals
Employee Free Time
Overview
Valid Parentheses
Decode String
Longest Valid Parentheses
Monotonic Stack
Daily Temperatures
Largest Rectangle in Histogram
Overview
Linked List Cycle
Palindrome Linked List
Remove Nth Node From End of List
Reorder List
Swap Nodes in Pairs
Overview
Apple Harvest (Koko Eating Bananas)
Search in Rotated Sorted Array
Split Array Largest Sum
Kth Smallest Element in a Sorted Matrix
Minimum Shipping Capacity
Overview
Kth Largest Element in an Array
K Closest Points to Origin
Find K Closest Elements
Merge K Sorted Lists
Median from Data Stream
Introduction
Fundamentals
Return Values
Maximum Depth of Binary Tree
Path Sum
Passing Values Down and Helper Functions
Validate Binary Search Tree
Calculate Tilt
Diameter of a Binary Tree
Path Sum II
Longest Univalue Path
Graphs Overview
Adjacency List
Copy Graph
Graph Valid Tree
Matrices
Flood Fill
Number of Islands
Surrounded Regions
Pacific Atlantic Water Flow
Introduction
Overview
Level Order Sum
Rightmost Node
Zigzag Level Order
Maximum Width of Binary Tree
Graphs Overview
Minimum Knight Moves
Rotting Oranges
01-Matrix
Bus Routes
Overview
Word Search
Solution Space Trees
Subsets
Generate Parentheses
Combination Sum
Palindrome Partitioning
N-Queens
Overview
Course Schedule
Course Schedule II
Shortest Path Algorithms
Network Delay Time
Cheapest Flights Within K Stops
Path With Minimum Effort
Find City with Fewest Reachable
Fundamentals
Solving a Question with Dynamic Programming
Counting Bits
Decode Ways
Unique Paths
Maximal Square
Longest Increasing Subsequence
Word Break
Maximum Profit in Job Scheduling
Paint House
Paint House II
Minimum Window Subsequence
Overview
Best Time to Buy and Sell Stock
Gas Station
Jump Game
Jump Game II
Partition Labels
Overview
Implement Trie Methods
Prefix Matching
Overview
Count Vowels in Substrings
Subarray Sum Equals K
Spiral Matrix
Rotate Image
Set Matrix Zeroes
Vote For New Content
Pricing
Sign in / Sign up
Search
⌘K
Pricing

Tutor

Backtracking

Generate Parentheses

medium

max (21)341224132;341225102;21365487109
Count: 10
abcValid triangle requires:a + b > c AND a + c > b AND b + c > a(every pair must sum to more than the third side)3511SOURCE23211SOURCE23UNREACHABLE$100$100$100$5000SRC123DST$100$100$1000SRC123DST01233141Threshold: 4Answer: 32 reachable01234231118Threshold: 2Answer: 01 reachable1102233321432263321
DESCRIPTION (inspired by Leetcode.com)

Given an integer n, write a function to return all well-formed (valid) expressions that can be made using n pairs of parentheses.

Example 1:

Input:

n = 3

Output:

["((()))","(()())","(())()","()(())","()()()"]

Example 2:

Input:

n = 2

Output:

["()()", "(())"]

Explanation

Let's start by figuring out how to incrementally generate all valid combinations of n pairs of parentheses starting from an empty string s = "". Doing so will help us visualize the "solution space tree" which we can then traverse using a recursive backtracking approach.
At each step below, we can add either an opening parenthesis '(' or a closing parenthesis ')' to the string s as long as the resulting string remains valid. Let's walkthrough the process of generating all valid combinations of parentheses for n = 2:
s = ``
If we start with an empty string, then we can only add an opening parenthesis '(', as adding a closing parenthesis ')' would result in an invalid combination.
s = (
We can add both an opening parenthesis '(' and a closing parenthesis ')' to the string s without making it invalid.
s = (( and s = ()
For this string s = ((: we can't add an opening parenthesis '(' to s as it would make it invalid. This is because the number of opening parentheses is already equal to n. However, we can add a closing parenthesis ')' to s.
For the string s = (): we can only add an opening parenthesis '(' as adding a closing parenthesis would make it invalid. This is because s has an equal number of opening and closing parentheses, and we need to add another opening parenthesis before we can add a closing parenthesis.
From this, we can notice two rules:
  1. We can add an opening parenthesis '(' if the number of opening parentheses in s is less than n.
  2. We can add a closing parenthesis ')' if the number of closing parentheses in s is less than the number of opening parentheses in s.
s = (() and s = ()(
For the string s = ((): we can only add a closing parentheses ')' (since there are already n = 2 opening parentheses in s)
For the string s = ()(: we can only add a closing parentheses ')' (since there are already n = 2 opening parentheses in s)
s = (()) and s = ()()
In both cases, the length of the string s is equal to 2 * n, so we are done.
If we visualize this process as a tree, we get the following:
((((()(())()()(()()

Writing the Backtracking Function

Once we have this tree, we can use depth-first search to write a recursive backtracking function that generates all valid combinations of n pairs of parentheses.
At each node, we need the current string, and the number of opening and closing parentheses in the string. These are the parameters we'll pass to our recursive function.
Solution
Python
Language
def dfs(s, open, close):
At each node, we'll make recursive calls to our left child if the number of opening parentheses is less than n, and to our right child if the number of closing parentheses is less than the number of opening parentheses.
Solution
Python
Language
def dfs(s, open, close):
# base case
if open < n:
# add an opening parenthesis and increment the open count
dfs(s + '(', open + 1, close)
if close < open:
# add a closing parenthesis and increment the close count
dfs(s + ')', open, close + 1)
The base case is when the length of the string is equal to 2 * n, at which point we'll add the string to our list of valid combinations.
Solution
Python
Language
def dfs(s, open, close):
# base case
if len(s) == 2 * n:
res.append(s)
return
if open < n:
# add an opening parenthesis and increment the open count
dfs(s + '(', open + 1, close)
if close < open:
# add a closing parenthesis and increment the close count
dfs(s + ')', open, close + 1)
In the main function, we'll initialize an empty list to store the valid combinations, and make the initial call to our recursive function with an empty string and counts of 0 for both opening and closing parentheses, and return the list of valid combinations at the end.
Solution
Python
Language
class Solution:
def generateParenthesis(self, n: int) -> List[str]:
res = []
def dfs(s, open, close):
# base case
if len(s) == 2 * n:
res.append(s)
return
if open < n:
# add an opening parenthesis and increment the open count
dfs(s + '(', open + 1, close)
if close < open:
# add a closing parenthesis and increment the close count
dfs(s + ')', open, close + 1)
dfs("", 0, 0)
return res

Complexity

Test Your Knowledge

Login to take the complexity quiz and track your progress

Complexity Analysis

Time Complexity: O(4^n / √n) The number of valid parenthesizations of n pairs is the nth Catalan number, which is C(2n, n) / (n + 1). Asymptotically, this works out to 4^n / (n√n). Since each valid sequence has length 2n, we spend O(n) work per sequence building and copying it, giving us O(n) × O(4^n / n√n) = O(4^n / √n) total.

Space Complexity: O(n) The recursion goes at most 2n levels deep (one level per character in the output string), so the call stack uses O(n) space. We don't count the output list itself.

Mark as read

Next: Combination Sum

Your account is free and you can post anonymously if you choose.

Unlock Premium Coding Content

Interactive algorithm visualizations
Guided Practice
Recent interview questions
Learn More
Reading Progress

On This Page

Explanation

Writing the Backtracking Function

Complexity

Questions
Meta SWE Interview QuestionsAmazon SWE Interview QuestionsGoogle SWE Interview QuestionsOpenAI SWE Interview QuestionsEngineering Manager (EM) Interview Questions
Learn
Learn System DesignLearn DSALearn BehavioralLearn ML System DesignLearn Low Level DesignGuided Practice
Links
FAQPricingGift PremiumHello Interview Premium
Legal
Terms and ConditionsPrivacy PolicySecurity
Contact
About UsProduct Support

7511 Greenwood Ave North Unit #4238 Seattle WA 98103


© 2026 Optick Labs Inc. All rights reserved.

Login to track your progress