Skip to content

Latest commit

 

History

History
121 lines (47 loc) · 1.41 KB

File metadata and controls

121 lines (47 loc) · 1.41 KB

中文文档

Description

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

An input string is valid if:

    <li>Open brackets must be closed by the same type of brackets.</li>
    
    <li>Open brackets must be closed in the correct order.</li>
    

Note that an empty string is also considered valid.

Example 1:

Input: "()"

Output: true

Example 2:

Input: "()[]{}"

Output: true

Example 3:

Input: "(]"

Output: false

Example 4:

Input: "([)]"

Output: false

Example 5:

Input: "{[]}"

Output: true

Solutions

Python3

Java

...