README ¶ 22. Generate Parentheses https://leetcode.com/problems/generate-parentheses/ Expand ▾ Collapse ▴ Documentation ¶ Index ¶ type ParenthesesStack Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type ParenthesesStack ¶ type ParenthesesStack interface { Push(char byte) Pop() (byte, bool) Peek() (byte, bool) String() string // for debugging LeftCount() int RightCount() int Size() int WellFormed() bool } Source Files ¶ View all Source files main.go Click to show internal directories. Click to hide internal directories.