data-structures-and-algorithms

Challenge Summary

Create a function multiBracketValidation(input) checks if the input contains a balanced brakets or not, if yes it will return true if no it will return false

Whiteboard Process

multi-bracket-validation

Approach & Efficiency

multiBracketValidation(input):

Solution

I have created a conter for each bracket type then return the results accordingly