Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Valid Parentheses Procedure
00:00
5 left

Valid Parentheses Procedure

EasyPython

Problem

ServiceNow expression and configuration syntax can contain nested parentheses, square brackets, and braces. Given a string containing only the bracket characters (), [], and {}, determine whether the brackets are correctly matched and properly nested.

A string is valid when every opening bracket has the corresponding closing bracket, closing brackets appear in last-in, first-out order, and no closing bracket appears without a matching opener.

Formal Specification

Implement is_valid_brackets(s), where s is a string. Return True if all brackets are valid and False otherwise. The input contains only (, ), [, ], {, and }.

Constraints

  • 0 <= len(s) <= 10^5
  • s contains only the characters (, ), [, ], {, and }
  • Return True only when every bracket is correctly matched and nested

Function Signature

def is_valid_brackets(s):
Interviewer

Your question is Valid Parentheses Procedure. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.