1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-13 19:31:42 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

add leetcode problem-cn part6

This commit is contained in:
2022-03-27 20:56:26 +08:00
parent c11d601602
commit 08d1f2a596
1096 changed files with 88216 additions and 2 deletions

View File

@@ -0,0 +1,34 @@
<p>给定一组<strong> 互不相同</strong> 的单词, 找出所有<strong> 不同<em> </em></strong>的索引对 <code>(i, j)</code>,使得列表中的两个单词, <code>words[i] + words[j]</code> ,可拼接成回文串。</p>
<p> </p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>words = ["abcd","dcba","lls","s","sssll"]
<strong>输出:</strong>[[0,1],[1,0],[3,2],[2,4]]
<strong>解释:</strong>可拼接成的回文串为 <code>["dcbaabcd","abcddcba","slls","llssssll"]</code>
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>words = ["bat","tab","cat"]
<strong>输出:</strong>[[0,1],[1,0]]
<strong>解释:</strong>可拼接成的回文串为 <code>["battab","tabbat"]</code></pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>words = ["a",""]
<strong>输出:</strong>[[0,1],[1,0]]
</pre>
 
<p><strong>提示:</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> 由小写英文字母组成</li>
</ul>