Question: Please write the functions in python, include explanation for each line of code and include a screenshot of the function to view correct indentation Define
Please write the functions in python, include explanation for each line of code and include a screenshot of the function to view correct indentation Define the function using the Stack ADT Don't define your own Stack class instead your code can make use of any the Stack ADT methods: Stack(), push(), pop(), peek(), size() and is_empty(). Write a function called is_balanced_brackets(text) which takes a string as a parameter, and returns a boolean. The function checks whether brackets are correctly balanced. There are three different types of brackets: ( ) , [ ] and <>. The function should return True if every opening bracket is matched by an appropriately-placed closing bracket of the same type, and False otherwise.
| Test | Result |
print(is_balanced_brackets('( | True |
print(is_balanced_brackets('x(y)z')) | True |
print(is_balanced_brackets('([x)](())()')) | False |
print(is_balanced_brackets('x[y)(]z')) | False |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
