Java Practice Questions
Java Practice Questions
11. Remove duplicate characters from a string without using HashSet or Collections.
Input: "programming"
Output: "progamin"
20. Print the difference between the count of even and odd digits in a string.
Input: "123456"
Output: 0