×
Mar 10, 2018 · Write a java program to find the longest palindrome present in a given string. For example, in the string abcba, the longest palindrome is abcba ...
People also ask
Oct 11, 2023 · Given a string str, the task is to find the longest substring which is a palindrome. Examples: Input: str = “forgeeksskeegfor” Output: “ ...
Missing: devglan | Show results with:devglan
May 29, 2020 · Description. Write a java program to find all the permutations of any given string. Permutation is the each of several possible ways in ...
Jan 1, 2018 · Write a java program to reverse a given string using recursion without using any predefined function.This program checks the understanding ...
Dec 1, 2019 · I know that a palindrome is a string of characters. It can be read forward and backward with the placement of each character in the same order ...
Missing: devglan | Show results with:devglan
Mar 10, 2018 · This can be achieved via Arrays.sort() or Collection.sort() and once the given array is sorted the second largest number can be easily found.
Video for devglan longest palindrome string
Duration: 12:37
Posted: Jan 17, 2017
Missing: devglan | Show results with:devglan
Dec 31, 2017 · Java program to find the duplicate or repeated character from a string along with the count of repeated characters.The program uses hashmap ...
Mar 10, 2018 · First use the nested loop and create a string with all the common characters and then replace common chars from the given strings with a blank.