Palindrome pair in an array of words (or strings)
Given an array of strings arr[] of size n, the task is to find if there exists two strings arr[i] and arr[j] such that arr[i]+arr[j] is a palindrome i.e the concatenation of string arr[i] and arr[j] results into a palindrome. Examples:Â Input: arr[] = ["geekf", "geeks", "or", "keeg", "abc", "bc"]Out