Objective
Inspect each argument and decide whether its round, square, and curly brackets are paired up and nested in the correct order.
Steps
$ ./match_brackets "({[]})"
OK
$ ./match_brackets "([)]"
Error
$ ./match_brackets "vibe (code (it [now]))" "oops ("
OK Error
Expected files
Allowed functions

Objective
Inspect each argument and decide whether its round, square, and curly brackets are paired up and nested in the correct order.
Steps
$ ./match_brackets "({[]})"
OK
$ ./match_brackets "([)]"
Error
$ ./match_brackets "vibe (code (it [now]))" "oops ("
OK Error
Expected files
Allowed functions

Tests
Run the tests to grade your code