Objective
Write a program that repairs a parenthesis-only string by blanking the fewest characters possible.
Steps
$ ./paren_repair '(()' | cat -e
()$ ( )$
$ ./paren_repair '((()))' | cat -e
((()))$
Expected files
Allowed functions

Objective
Write a program that repairs a parenthesis-only string by blanking the fewest characters possible.
Steps
$ ./paren_repair '(()' | cat -e
()$ ( )$
$ ./paren_repair '((()))' | cat -e
((()))$
Expected files
Allowed functions

Tests
Run the tests to grade your code