Valid Parenthesis Problem Statement

Given a string str composed solely of the characters "{", "}", "(", ")", "[", and "]", determine whether the parentheses are balanced.

Input:

The first line contains an integer 'T' representing the number of test cases. For each test case, there is a single line containing a string as described.

Output:

For each test case, output a single line indicating if the string is balanced or not.

Example:

Input:
T = 2
STR = "{[()]}"
STR = "{[(])}"
Output:
YES
NO
Explanation:

The first string is balanced whereas the second is not.

Constraints:

  • 1 <= T <= 10
  • 1 <= N <= 10^5
  • Where N is the length of the input string.
  • Time Limit: 1 sec

Note:

You are not required to print anything explicitly. Just implement the function.
AnswerBot
2d

The task is to determine if the given string of parentheses is balanced or not.

  • Use a stack to keep track of opening parentheses

  • When encountering a closing parenthesis, check if it matches the top of t...read more

Help your peers!
Add answer anonymously...
Infosys System Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter