mirror of
				https://gitee.com/coder-xiaomo/leetcode-problemset
				synced 2025-11-04 03:33:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<p>Given a string <code>s</code> containing just the characters <code>'('</code>, <code>')'</code>, <code>'{'</code>, <code>'}'</code>, <code>'['</code> and <code>']'</code>, determine if the input string is valid.</p>
 | 
						|
 | 
						|
<p>An input string is valid if:</p>
 | 
						|
 | 
						|
<ol>
 | 
						|
	<li>Open brackets must be closed by the same type of brackets.</li>
 | 
						|
	<li>Open brackets must be closed in the correct order.</li>
 | 
						|
	<li>Every close bracket has a corresponding open bracket of the same type.</li>
 | 
						|
</ol>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong class="example">Example 1:</strong></p>
 | 
						|
 | 
						|
<div class="example-block">
 | 
						|
<p><strong>Input:</strong> <span class="example-io">s = "()"</span></p>
 | 
						|
 | 
						|
<p><strong>Output:</strong> <span class="example-io">true</span></p>
 | 
						|
</div>
 | 
						|
 | 
						|
<p><strong class="example">Example 2:</strong></p>
 | 
						|
 | 
						|
<div class="example-block">
 | 
						|
<p><strong>Input:</strong> <span class="example-io">s = "()[]{}"</span></p>
 | 
						|
 | 
						|
<p><strong>Output:</strong> <span class="example-io">true</span></p>
 | 
						|
</div>
 | 
						|
 | 
						|
<p><strong class="example">Example 3:</strong></p>
 | 
						|
 | 
						|
<div class="example-block">
 | 
						|
<p><strong>Input:</strong> <span class="example-io">s = "(]"</span></p>
 | 
						|
 | 
						|
<p><strong>Output:</strong> <span class="example-io">false</span></p>
 | 
						|
</div>
 | 
						|
 | 
						|
<p><strong class="example">Example 4:</strong></p>
 | 
						|
 | 
						|
<div class="example-block">
 | 
						|
<p><strong>Input:</strong> <span class="example-io">s = "([])"</span></p>
 | 
						|
 | 
						|
<p><strong>Output:</strong> <span class="example-io">true</span></p>
 | 
						|
</div>
 | 
						|
 | 
						|
<p><strong class="example">Example 5:</strong></p>
 | 
						|
 | 
						|
<div class="example-block">
 | 
						|
<p><strong>Input:</strong> <span class="example-io">s = "([)]"</span></p>
 | 
						|
 | 
						|
<p><strong>Output:</strong> <span class="example-io">false</span></p>
 | 
						|
</div>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong>Constraints:</strong></p>
 | 
						|
 | 
						|
<ul>
 | 
						|
	<li><code>1 <= s.length <= 10<sup>4</sup></code></li>
 | 
						|
	<li><code>s</code> consists of parentheses only <code>'()[]{}'</code>.</li>
 | 
						|
</ul>
 |