×
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 ...
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
People also ask
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 ...
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
Jan 1, 2018 · Write a java program to reverse a given string using recursion without using any predefined function.This program checks the understanding ...
Mar 10, 2018 · The main concept here is to sort the given array.This can be achieved via Arrays.sort() or Collection.sort() and once the given array is sorted ...
Video for devglan longest palindrome string
Duration: 12:37
Posted: Jan 17, 2017
Missing: devglan | Show results with:devglan
Given a string S, find the longest palindromic substring in S. Substring of ... Palindrome string: A string that reads the same backward. More formally, S is ...
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.