Given a string consisting of closed parentheses, form a string array in the following way so that the orders of these parentheses are visually apparent.

Example:

str = '(()(()(()(()))))';
out =  {'(              )';
        ' ()(          ) ';
        '    ()(      )  ';
        '       ()(  )   ';
        '          ()    '}

For more information, please check the test suite.

Solution Stats

328 Solutions

58 Solvers

Last Solution submitted on Jul 16, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...