Solution Review: Longest Continuous Balanced Parenthesis
Let's review the solution of the longest continuous balanced parenthesis problem.
We'll cover the following...
We'll cover the following...
Solution
We keep track of the longest balanced parenthesis in the stack and update the length variable if we find a sequence greater than the previous one.
Time complexity
The time complexity of this solution is ...