Problem Statement
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
Leetcode link - https://leetcode.com/problems/valid-parentheses/
Idea
We can use stack to keep track of the openi...