Valid Parentheses
문제 링크https://leetcode.com/problems/valid-parentheses/문제 설명문자 '()', '()', '{), '}', '[]' 및 '[]'만 포함된 문자열이 주어지면 입력 문자열이 유효한지 확인합니다.Example 2: Input: s = "()[]{}" Output: trueExample 3: Input: s = "(]" Output: false풀이 전략유효한 문자열에는 균형 잡힌 괄호가 올바르게 정렬되어 있어야 합니다.스택을 사용하면 "마지막에, 먼저"(LIFO) 원칙에 따라 각 마감 브래킷을 가장 최근에 일치하지 않는 오프닝 브래킷과 일치시킬 수 있습니다.class Solution: def isValid(self, s: str) -> bool: ..