Skip to content

Latest commit

 

History

History
28 lines (14 loc) · 554 Bytes

020-valid-parentheses.md

File metadata and controls

28 lines (14 loc) · 554 Bytes

020-valid-parentheses

Question {#question}

https://leetcode.com/problems/valid-parentheses/description/

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

The brackets must close in the correct order, "()" and "()[]{}" are all valid but "(]" and "([)]" are not.

Example:


Thought Process {#thought-process}

  1. AAAAAA

Solution

Additional {#additional}