Skip to content

Latest commit

 

History

History

multi_bracket_validation

FIFO animal shelter

Write a function that evaluates whether a string has balanced brackets.

Challenge

Algorithm input consists of a string. Brackets are [, ], (, ), {, and }. If the brackets are balanced then true is returned else false.

Solution

Whiteboard Images