Package g0601_0700.s0648_replace_words
Class Solution
java.lang.Object
g0601_0700.s0648_replace_words.Solution
648 - Replace Words.<p>Medium</p>
<p>In English, we have a concept called <strong>root</strong> , which can be followed by some other word to form another longer word - let’s call this word <strong>successor</strong>. For example, when the <strong>root</strong> <code>"an"</code> is followed by the <strong>successor</strong> word <code>"other"</code>, we can form a new word <code>"another"</code>.</p>
<p>Given a <code>dictionary</code> consisting of many <strong>roots</strong> and a <code>sentence</code> consisting of words separated by spaces, replace all the <strong>successors</strong> in the sentence with the <strong>root</strong> forming it. If a <strong>successor</strong> can be replaced by more than one <strong>root</strong> , replace it with the <strong>root</strong> that has <strong>the shortest length</strong>.</p>
<p>Return <em>the <code>sentence</code></em> after the replacement.</p>
<p><strong>Example 1:</strong></p>
<p><strong>Input:</strong> dictionary = [“cat”,“bat”,“rat”], sentence = “the cattle was rattled by the battery”</p>
<p><strong>Output:</strong> “the cat was rat by the bat”</p>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> dictionary = [“a”,“b”,“c”], sentence = “aadsfasf absbs bbab cadsfafs”</p>
<p><strong>Output:</strong> “a a b c”</p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>1 <= dictionary.length <= 1000</code></li>
<li><code>1 <= dictionary[i].length <= 100</code></li>
<li><code>dictionary[i]</code> consists of only lower-case letters.</li>
<li><code>1 <= sentence.length <= 10<sup>6</sup></code></li>
<li><code>sentence</code> consists of only lower-case letters and spaces.</li>
<li>The number of words in <code>sentence</code> is in the range <code>[1, 1000]</code></li>
<li>The length of each word in <code>sentence</code> is in the range <code>[1, 1000]</code></li>
<li>Every two consecutive words in <code>sentence</code> will be separated by exactly one space.</li>
<li><code>sentence</code> does not have leading or trailing spaces.</li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
replaceWords
-