...in a string can be rearranged to make a palindrome - Code...
//Check if a given string is a rotation of a palindrome public class test7 { public static void main(String[] args) { String s = "Protijayi"; Set<Character> set = new HashSet<>(); for (int i = 0; i < s.length(); i++) { char ch = s.charAt(i...