Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 407 Bytes

027.md

File metadata and controls

11 lines (6 loc) · 407 Bytes

Daily Coding Problem: Problem #27 [Easy]

Good morning! Here's your coding interview problem for today.

This problem was asked by Facebook.

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.