Day 13 of LeetCode Challenge
Problem 1: Remove Outermost Parenthesis
Link to the problem: https://leetcode.com/problems/remove-outermost-parentheses/description/
class Solution {
public String removeOuterParentheses(String s) {
Stack<Character> stack = new Stack<>()...
tusharpant.hashnode.dev2 min read