mirror of
				https://gitee.com/coder-xiaomo/leetcode-problemset
				synced 2025-11-04 19:53:12 +08:00 
			
		
		
		
	国外版
This commit is contained in:
		
							
								
								
									
										30
									
								
								算法题(国外版)/shortest-common-supersequence.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								算法题(国外版)/shortest-common-supersequence.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,30 @@
 | 
			
		||||
<p>Given two strings <code>str1</code> and <code>str2</code>, return <em>the shortest string that has both </em><code>str1</code><em> and </em><code>str2</code><em> as <strong>subsequences</strong></em>. If there are multiple valid strings, return <strong>any</strong> of them.</p>
 | 
			
		||||
 | 
			
		||||
<p>A string <code>s</code> is a <strong>subsequence</strong> of string <code>t</code> if deleting some number of characters from <code>t</code> (possibly <code>0</code>) results in the string <code>s</code>.</p>
 | 
			
		||||
 | 
			
		||||
<p> </p>
 | 
			
		||||
<p><strong>Example 1:</strong></p>
 | 
			
		||||
 | 
			
		||||
<pre>
 | 
			
		||||
<strong>Input:</strong> str1 = "abac", str2 = "cab"
 | 
			
		||||
<strong>Output:</strong> "cabac"
 | 
			
		||||
<strong>Explanation:</strong> 
 | 
			
		||||
str1 = "abac" is a subsequence of "cabac" because we can delete the first "c".
 | 
			
		||||
str2 = "cab" is a subsequence of "cabac" because we can delete the last "ac".
 | 
			
		||||
The answer provided is the shortest such string that satisfies these properties.
 | 
			
		||||
</pre>
 | 
			
		||||
 | 
			
		||||
<p><strong>Example 2:</strong></p>
 | 
			
		||||
 | 
			
		||||
<pre>
 | 
			
		||||
<strong>Input:</strong> str1 = "aaaaaaaa", str2 = "aaaaaaaa"
 | 
			
		||||
<strong>Output:</strong> "aaaaaaaa"
 | 
			
		||||
</pre>
 | 
			
		||||
 | 
			
		||||
<p> </p>
 | 
			
		||||
<p><strong>Constraints:</strong></p>
 | 
			
		||||
 | 
			
		||||
<ul>
 | 
			
		||||
	<li><code>1 <= str1.length, str2.length <= 1000</code></li>
 | 
			
		||||
	<li><code>str1</code> and <code>str2</code> consist of lowercase English letters.</li>
 | 
			
		||||
</ul>
 | 
			
		||||
		Reference in New Issue
	
	Block a user