336. Palindrome Pairs
Posted 咖啡中不塌缩的方糖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了336. Palindrome Pairs相关的知识,希望对你有一定的参考价值。
Given a list of unique words. Find all pairs of distinct indices (i, j)
in the given list, so that the concatenation of the two words, i.e.words[i] + words[j]
is a palindrome.
Example 1:
Given words
= ["bat", "tab", "cat"]
Return [[0, 1], [1, 0]]
The palindromes are ["battab", "tabbat"]
Example 2:
Given words
= ["abcd", "dcba", "lls", "s", "sssll"]
Return [[0, 1], [1, 0], [3, 2], [2, 4]]
The palindromes are ["dcbaabcd", "abcddcba", "slls", "llssssll"]
以上是关于336. Palindrome Pairs的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 336. Palindrome Pairs(回文对)
java 336. Palindrome Pairs(Trie).java
java 336. Palindrome Pairs(Trie).java