×
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 ...
Jan 1, 2018 · Write a java program to reverse a given string using recursion without using any predefined function.This program checks the understanding ...
May 29, 2020 · The approach would be to take out the first char and keep it constant and permute the rest of the characters and use recursion to permute the ...
May 29, 2020 · In this approach, we simply traverse any given word and remove each character of first word from the second word. ... 19 Remove Common Characters ...
Jul 13, 2023 · Given two strings string1 and string2, remove those characters from the first string(string1) which are present in the second string(string2).
Missing: devglan | Show results with:devglan
Feb 16, 2020 · Write a Java program to find first non repeated character in a String. We will be using in-built data structure called as LinkedHashMap and ...
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 ...