Class Solution

java.lang.Object
g0901_1000.s0916_word_subsets.Solution

public class Solution extends Object
916 - Word Subsets.<p>Medium</p> <p>You are given two string arrays <code>words1</code> and <code>words2</code>.</p> <p>A string <code>b</code> is a <strong>subset</strong> of string <code>a</code> if every letter in <code>b</code> occurs in <code>a</code> including multiplicity.</p> <ul> <li>For example, <code>&quot;wrr&quot;</code> is a subset of <code>&quot;warrior&quot;</code> but is not a subset of <code>&quot;world&quot;</code>.</li> </ul> <p>A string <code>a</code> from <code>words1</code> is <strong>universal</strong> if for every string <code>b</code> in <code>words2</code>, <code>b</code> is a subset of <code>a</code>.</p> <p>Return an array of all the <strong>universal</strong> strings in <code>words1</code>. You may return the answer in <strong>any order</strong>.</p> <p><strong>Example 1:</strong></p> <p><strong>Input:</strong> words1 = [&ldquo;amazon&rdquo;,&ldquo;apple&rdquo;,&ldquo;facebook&rdquo;,&ldquo;google&rdquo;,&ldquo;leetcode&rdquo;], words2 = [&ldquo;e&rdquo;,&ldquo;o&rdquo;]</p> <p><strong>Output:</strong> [&ldquo;facebook&rdquo;,&ldquo;google&rdquo;,&ldquo;leetcode&rdquo;]</p> <p><strong>Example 2:</strong></p> <p><strong>Input:</strong> words1 = [&ldquo;amazon&rdquo;,&ldquo;apple&rdquo;,&ldquo;facebook&rdquo;,&ldquo;google&rdquo;,&ldquo;leetcode&rdquo;], words2 = [&ldquo;l&rdquo;,&ldquo;e&rdquo;]</p> <p><strong>Output:</strong> [&ldquo;apple&rdquo;,&ldquo;google&rdquo;,&ldquo;leetcode&rdquo;]</p> <p><strong>Constraints:</strong></p> <ul> <li><code>1 <= words1.length, words2.length <= 10<sup>4</sup></code></li> <li><code>1 <= words1[i].length, words2[i].length <= 10</code></li> <li><code>words1[i]</code> and <code>words2[i]</code> consist only of lowercase English letters.</li> <li>All the strings of <code>words1</code> are <strong>unique</strong>.</li> </ul>
  • Constructor Details

    • Solution

      public Solution()
  • Method Details