Class Solution
java.lang.Object
g2401_2500.s2486_append_characters_to_string_to_make_subsequence.Solution
2486 - Append Characters to String to Make Subsequence.<p>Medium</p>
<p>You are given two strings <code>s</code> and <code>t</code> consisting of only lowercase English letters.</p>
<p>Return <em>the minimum number of characters that need to be appended to the end of</em> <code>s</code> <em>so that</em> <code>t</code> <em>becomes a <strong>subsequence</strong> of</em> <code>s</code>.</p>
<p>A <strong>subsequence</strong> is a string that can be derived from another string by deleting some or no characters without changing the order of the remaining characters.</p>
<p><strong>Example 1:</strong></p>
<p><strong>Input:</strong> s = “coaching”, t = “coding”</p>
<p><strong>Output:</strong> 4</p>
<p><strong>Explanation:</strong> Append the characters “ding” to the end of s so that s = “coachingding”. Now, t is a subsequence of s (“<ins> <strong>co</strong> </ins>aching<ins> <strong>ding</strong> </ins>”). It can be shown that appending any 3 characters to the end of s will never make t a subsequence.</p>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> s = “abcde”, t = “a”</p>
<p><strong>Output:</strong> 0</p>
<p><strong>Explanation:</strong> t is already a subsequence of s (“<ins> <strong>a</strong> </ins>bcde”).</p>
<p><strong>Example 3:</strong></p>
<p><strong>Input:</strong> s = “z”, t = “abcde”</p>
<p><strong>Output:</strong> 5</p>
<p><strong>Explanation:</strong> Append the characters “abcde” to the end of s so that s = “zabcde”. Now, t is a subsequence of s (“z<ins> <strong>abcde</strong> </ins>”). It can be shown that appending any 4 characters to the end of s will never make t a subsequence.</p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>1 <= s.length, t.length <= 10<sup>5</sup></code></li>
<li><code>s</code> and <code>t</code> consist only of lowercase English letters.</li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
appendCharacters
-