Skip to content

Files

Latest commit

6a61414 · May 29, 2019

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 29, 2019
May 29, 2019

Given a string of round, curly, and square open and closing brackets, return whether the brackets are balanced (well-formed).

For example, given the string "([])", you should return true.

Given the string "([)]" or "((()", you should return false.