leetcode/0020_valid-parentheses
Sangeeth Sudheer 5820974811 feat(0020_valid-parentheses): add py3 soln 2022-04-12 21:08:34 +05:30
..
python3 feat(0020_valid-parentheses): add py3 soln 2022-04-12 21:08:34 +05:30
README.md feat(0020_valid-parentheses): add py3 soln 2022-04-12 21:08:34 +05:30

README.md

Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.

An input string is valid if:

  1. Open brackets must be closed by the same type of brackets.
  2. Open brackets must be closed in the correct order.

Example 1:

Input: s = "()"
Output: true

Example 2:

Input: s = "()[]{}"
Output: true

Example 3:

Input: s = "(]"
Output: false

Constraints:

  • 1 <= s.length <= 104
  • s consists of parentheses only '()[]{}'.