-
This is the third solution to check whether the given two strings are Anagram are not. This program uses Hash Map collection.
-
This is the second solution to check whether the given two strings are Anagram are not. This program uses deleteCharAt() method of StringBuilder Class.
-
This is the first solution to check whether the given two strings are Anagram are not. This program uses toCharArray() method of String Class.
-
This is the second solution to remove the duplicate numbers from an Array of integers. This program uses the Set collection to removing the duplicate numbers.
-
This is the first solution to remove the duplicate numbers from an Array of integers. This program takes the temporary array to store the numbers after removing the duplicates.
-
This is the second solution to to reverse each word in the given input line of strings. This program uses the core logic to reverse each string.
-
This is the first solution to to reverse each word in the given input line of strings. This program uses the built in reverse method of StringBuffer class.
-
Find the duplicate words in a given sentence of strings using the frequency method of the Collections class. This is the third possible solution to solve this problem.
-
This is the second solution to identify the duplicate words in a given input sentence of strings, using the HashMap methods.
-
This is the first solution to identify the duplicate words in a given input sentence of strings, using the core logic.
