Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
An input string is valid if:
Example 1:
Input: s = "()" Output: true
Example 2:
Input: s = "()[]{}"
Output: true
Example 3:
Input: s = "(]" Output: false
Constraints:
1 <= s.length <= 104s consists of parentheses only '()[]{}'.
class Solution {
public boolean isValid(String s) {
Stack st = new Stack<>();
for(int i=0;i0 && ch==']' && st.peek()=='['){
st.pop();
}else if (st.size()>0 && ch==')' && st.peek()=='('){
st.pop();
}else if (st.size()>0 && ch=='}' && st.peek()=='{'){
st.pop();
}else{
return false ;
}
}
if(st.size()==0){
return true ;
}else{
return false ;
}
}
}
© 2021 edSlash. All Rights Reserved.