Search⌘ K
AI Features

Valid Parentheses

Understand how to determine if a string containing various types of parentheses is valid. Learn to apply stack data structures to check matching and sequence of parentheses efficiently. Practice implementing a solution that meets optimal time and space complexity.

Statement

Given a string that may consist of opening and closing parentheses, your task is to check whether or not the string contains valid parenthesization.

The conditions to validate are as follows:

  1. Every opening parenthesis should be closed by the same kind of parenthesis. Therefore, {)and [(]) strings are invalid.

  2. Every opening parenthesis must be closed in the correct order. Therefore, )( and ()(() are invalid.

Constraints:

  • 11 \leq s.length 103\leq 10^3
  • The string will only contain the following characters: (, ), [, ], { and }.

Examples

Understand the problem

Let’s take a moment to make sure you’ve correctly understood the problem. The quiz below helps you check if you’re solving the correct problem:

Valid Parentheses

1.

Are the parentheses in the following string valid or not?

(){}[]

A.

Not valid

B.

Valid


1 / 2

Figure it out!

We have a game for you to play. Rearrange the logical building blocks to develop a clearer understanding of how to solve this problem.

Note: As an additional challenge, we have intentionally hidden the solution to this puzzle.

Sequence - Vertical
Drag and drop the cards to rearrange them in the correct sequence.

1
2
3

Try it yourself

Implement your solution in main.go in the following coding playground.

We have left the solution to this challenge as an exercise for you. The optimal solution to this problem runs in O(n) time and takes O(n) space. You may try to translate the logic of the solved puzzle into a coded solution.

Go
usercode > main.go
package main
func isValid(s string) bool {
// Replace this placeholder return statement with your code
return true
}
Valid Parentheses