mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
<p>There is a strange printer with the following two special properties:</p>
|
|
|
|
<ul>
|
|
<li>The printer can only print a sequence of <strong>the same character</strong> each time.</li>
|
|
<li>At each turn, the printer can print new characters starting from and ending at any place and will cover the original existing characters.</li>
|
|
</ul>
|
|
|
|
<p>Given a string <code>s</code>, return <em>the minimum number of turns the printer needed to print it</em>.</p>
|
|
|
|
<p> </p>
|
|
<p><strong class="example">Example 1:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> s = "aaabbb"
|
|
<strong>Output:</strong> 2
|
|
<strong>Explanation:</strong> Print "aaa" first and then print "bbb".
|
|
</pre>
|
|
|
|
<p><strong class="example">Example 2:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> s = "aba"
|
|
<strong>Output:</strong> 2
|
|
<strong>Explanation:</strong> Print "aaa" first and then print "b" from the second place of the string, which will cover the existing character 'a'.
|
|
</pre>
|
|
|
|
<p> </p>
|
|
<p><strong>Constraints:</strong></p>
|
|
|
|
<ul>
|
|
<li><code>1 <= s.length <= 100</code></li>
|
|
<li><code>s</code> consists of lowercase English letters.</li>
|
|
</ul>
|