This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| =begin | |
| A string S consisting of N characters is called properly nested if: | |
| S is empty; | |
| S has the form "(U)" where U is a properly nested string; | |
| S has the form "VW" | |
| where V and W are properly nested strings. | |
| For example, string "(()(())())" is properly nested but string "())" isn't. |
NewerOlder