[LeetCode] Palindrome Pairs 回文对

Posted Grandyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode] 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"]

Credits:
Special thanks to @dietpepsi for adding this problem and creating all test cases.

 

以上是关于[LeetCode] Palindrome Pairs 回文对的主要内容,如果未能解决你的问题,请参考以下文章

Palindrome Number ---- LeetCode 009

leetcode 9. palindrome number

LeetCode-Valid Palindrome

LeetCode:Palindrome Number

LeetCode Longest Palindrome

[Leetcode] Palindrome Number