mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
48 lines
1.8 KiB
HTML
48 lines
1.8 KiB
HTML
<p>You are given a <strong>0-indexed</strong> array of <strong>unique</strong> strings <code>words</code>.</p>
|
|
|
|
<p>A <strong>palindrome pair</strong> is a pair of integers <code>(i, j)</code> such that:</p>
|
|
|
|
<ul>
|
|
<li><code>0 <= i, j < words.length</code>,</li>
|
|
<li><code>i != j</code>, and</li>
|
|
<li><code>words[i] + words[j]</code> (the concatenation of the two strings) is a <span data-keyword="palindrome-string">palindrome</span>.</li>
|
|
</ul>
|
|
|
|
<p>Return <em>an array of all the <strong>palindrome pairs</strong> of </em><code>words</code>.</p>
|
|
|
|
<p>You must write an algorithm with <code>O(sum of words[i].length)</code> runtime complexity.</p>
|
|
|
|
<p> </p>
|
|
<p><strong class="example">Example 1:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> words = ["abcd","dcba","lls","s","sssll"]
|
|
<strong>Output:</strong> [[0,1],[1,0],[3,2],[2,4]]
|
|
<strong>Explanation:</strong> The palindromes are ["abcddcba","dcbaabcd","slls","llssssll"]
|
|
</pre>
|
|
|
|
<p><strong class="example">Example 2:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> words = ["bat","tab","cat"]
|
|
<strong>Output:</strong> [[0,1],[1,0]]
|
|
<strong>Explanation:</strong> The palindromes are ["battab","tabbat"]
|
|
</pre>
|
|
|
|
<p><strong class="example">Example 3:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> words = ["a",""]
|
|
<strong>Output:</strong> [[0,1],[1,0]]
|
|
<strong>Explanation:</strong> The palindromes are ["a","a"]
|
|
</pre>
|
|
|
|
<p> </p>
|
|
<p><strong>Constraints:</strong></p>
|
|
|
|
<ul>
|
|
<li><code>1 <= words.length <= 5000</code></li>
|
|
<li><code>0 <= words[i].length <= 300</code></li>
|
|
<li><code>words[i]</code> consists of lowercase English letters.</li>
|
|
</ul>
|