Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Brace Matching Coding

EasyPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Brace Matching Coding. Start with the requirements on the right.

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.

Problem

PagerDuty Event Orchestration expressions may contain parentheses, square brackets, and curly braces. Given an expression string, determine whether every bracket is properly closed and correctly nested.

A string is valid when:

  1. Every opening bracket has a matching closing bracket of the same type.
  2. Brackets close in last-in, first-out order.
  3. Non-bracket characters, such as letters, digits, spaces, and operators, are ignored.

Return True if the expression is valid. Otherwise, return False.

Formal Specification

Implement is_valid_brackets(expression), which accepts a string and returns a Boolean. The input contains printable ASCII characters. An empty string is valid because it contains no unmatched brackets.

Constraints

  • 0 <= len(expression) <= 10^4
  • Only (), [], and {} are treated as brackets.
  • Non-bracket characters may appear anywhere and must be ignored.
  • The input contains printable ASCII characters.

Function Signature

def is_valid_brackets(expression):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output