mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
39 lines
1.9 KiB
HTML
39 lines
1.9 KiB
HTML
<p>You are given two <strong>0-indexed</strong> strings <code>word1</code> and <code>word2</code>.</p>
|
|
|
|
<p>A <strong>move</strong> consists of choosing two indices <code>i</code> and <code>j</code> such that <code>0 <= i < word1.length</code> and <code>0 <= j < word2.length</code> and swapping <code>word1[i]</code> with <code>word2[j]</code>.</p>
|
|
|
|
<p>Return <code>true</code> <em>if it is possible to get the number of distinct characters in</em> <code>word1</code> <em>and</em> <code>word2</code> <em>to be equal with <strong>exactly one</strong> move. </em>Return <code>false</code> <em>otherwise</em>.</p>
|
|
|
|
<p> </p>
|
|
<p><strong class="example">Example 1:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> word1 = "ac", word2 = "b"
|
|
<strong>Output:</strong> false
|
|
<strong>Explanation:</strong> Any pair of swaps would yield two distinct characters in the first string, and one in the second string.
|
|
</pre>
|
|
|
|
<p><strong class="example">Example 2:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> word1 = "abcc", word2 = "aab"
|
|
<strong>Output:</strong> true
|
|
<strong>Explanation:</strong> We swap index 2 of the first string with index 0 of the second string. The resulting strings are word1 = "abac" and word2 = "cab", which both have 3 distinct characters.
|
|
</pre>
|
|
|
|
<p><strong class="example">Example 3:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> word1 = "abcde", word2 = "fghij"
|
|
<strong>Output:</strong> true
|
|
<strong>Explanation:</strong> Both resulting strings will have 5 distinct characters, regardless of which indices we swap.
|
|
</pre>
|
|
|
|
<p> </p>
|
|
<p><strong>Constraints:</strong></p>
|
|
|
|
<ul>
|
|
<li><code>1 <= word1.length, word2.length <= 10<sup>5</sup></code></li>
|
|
<li><code>word1</code> and <code>word2</code> consist of only lowercase English letters.</li>
|
|
</ul>
|