Leetcode #22 Generate Parentheses
We can use a backtracking/recursive approach to solve this.
If parenthesis is balanced, we can store it in the result array
We start by adding left side parenthesis
If right side is less than left, it will add to right side to balance it
/**
* @pa...
michelletanpy.hashnode.dev1 min read