Back to course home
0% completed
Solution: Balanced Parentheses
Problem Statement
Given a string s
containing (
, )
, [
, ]
, {
, and }
characters. Determine if a given string of parentheses is balanced.
A string of parentheses is considered balanced if every opening parenthesis has a corresponding closing parenthesis in the correct order.
Example 1:
Input: String s = "{[()]}";
Expected Output: true
Explanation: The parentheses in this string are perfectly balanced. Every opening parenthesis '{', '[', '(' has a corresponding closing parenthesis '}', ']', ')' in the correct order.
Example 2:
.....
.....
.....
Like the course? Get enrolled and start learning!