1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/最短补全词 [shortest-completing-word].html
2022-03-29 12:43:11 +08:00

42 lines
2.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给你一个字符串 <code>licensePlate</code> 和一个字符串数组 <code>words</code> ,请你找出&nbsp;<code>words</code> 中的 <strong>最短补全词</strong></p>
<p><strong>补全词 </strong>是一个包含 <code>licensePlate</code> 中所有字母的单词。<strong>忽略</strong>&nbsp;<code>licensePlate</code> 中的 <strong>数字和空格 </strong><strong>不区分大小写</strong>。如果某个字母在 <code>licensePlate</code> 中出现不止一次,那么该字母在补全词中的出现次数应当一致或者更多。</p>
<p>例如:<code>licensePlate</code><code> = "aBc 12c"</code>,那么它的补全词应当包含字母 <code>'a'</code><code>'b'</code> (忽略大写)和两个 <code>'c'</code> 。可能的 <strong>补全词</strong><code>"abccdef"</code><code>"caaacab"</code> 以及 <code>"cbca"</code></p>
<p>请返回 <code>words</code> 中的 <strong>最短补全词</strong> 。题目数据保证一定存在一个最短补全词。当有多个单词都符合最短补全词的匹配条件时取 <code>words</code><strong>第一个</strong> 出现的那个。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>licensePlate = "1s3 PSt", words = ["step", "steps", "stripe", "stepple"]
<strong>输出:</strong>"steps"
<strong>解释:</strong>最短补全词应该包括 "s"、"p"、"s"(忽略大小写) 以及 "t"。
"step" 包含 "t"、"p",但只包含一个 "s",所以它不符合条件。
"steps" 包含 "t"、"p" 和两个 "s"。
"stripe" 缺一个 "s"。
"stepple" 缺一个 "s"。
因此,"steps" 是唯一一个包含所有字母的单词,也是本例的答案。</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>licensePlate = "1s3 456", words = ["looks", "pest", "stew", "show"]
<strong>输出:</strong>"pest"
<strong>解释:</strong>licensePlate 只包含字母 "s" 。所有的单词都包含字母 "s" ,其中 "pest"、"stew"、和 "show" 三者最短。答案是 "pest" ,因为它是三个单词中在 words 里最靠前的那个。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= licensePlate.length &lt;= 7</code></li>
<li><code>licensePlate</code> 由数字、大小写字母或空格 <code>' '</code> 组成</li>
<li><code>1 &lt;= words.length &lt;= 1000</code></li>
<li><code>1 &lt;= words[i].length &lt;= 15</code></li>
<li><code>words[i]</code> 由小写英文字母组成</li>
</ul>